diff --git a/.github/build_vars.sh b/.github/build_vars.sh index 7535f0c57..600eaa390 100755 --- a/.github/build_vars.sh +++ b/.github/build_vars.sh @@ -5,7 +5,6 @@ var_list=( 'AWS_DEFAULT_REGION' 'CODE_CLIMATE_ID' 'STAGE_PREFIX' - 'SEED_DATABASE' ) set_value() { diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 17461e71e..b3c966402 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -33,7 +33,6 @@ jobs: AWS_DEFAULT_REGION: ${{ secrets[env.BRANCH_SPECIFIC_VARNAME_AWS_DEFAULT_REGION] || secrets.AWS_DEFAULT_REGION }} CODE_CLIMATE_ID: ${{ secrets.CODE_CLIMATE_ID }} STAGE_PREFIX: ${{ secrets.STAGE_PREFIX }} - SEED_DATABASE: ${{ secrets[env.BRANCH_SPECIFIC_VARNAME_SEED_DATABASE] }} - name: Configure AWS credentials for GitHub Actions OIDC uses: aws-actions/configure-aws-credentials@v4 with: diff --git a/README.md b/README.md index abeea5c54..551ed50c4 100644 --- a/README.md +++ b/README.md @@ -5,11 +5,12 @@ [![Test Coverage](https://api.codeclimate.com/v1/badges/6dd9a7765a10a72867f2/test_coverage)](https://codeclimate.com/repos/64497017eab34100ce938fe6/test_coverage) ### Integration Environment Deploy Status: -| Branch | Build Status | -| ------------- | ------------- | -| master | ![deploy](https://github.com/Enterprise-CMCS/macpro-mdct-seds/actions/workflows/deploy.yml/badge.svg) | -| val | ![deploy](https://github.com/Enterprise-CMCS/macpro-mdct-seds/actions/workflows/deploy.yml/badge.svg?branch=val) | -| production | ![deploy](https://github.com/Enterprise-CMCS/macpro-mdct-seds/actions/workflows/deploy.yml/badge.svg?branch=production) | + +| Branch | Build Status | +| ---------- | ----------------------------------------------------------------------------------------------------------------------- | +| master | ![deploy](https://github.com/Enterprise-CMCS/macpro-mdct-seds/actions/workflows/deploy.yml/badge.svg) | +| val | ![deploy](https://github.com/Enterprise-CMCS/macpro-mdct-seds/actions/workflows/deploy.yml/badge.svg?branch=val) | +| production | ![deploy](https://github.com/Enterprise-CMCS/macpro-mdct-seds/actions/workflows/deploy.yml/badge.svg?branch=production) | SEDS is the CMCS MDCT application for collecting state data related to Medicaid and CHIP quarterly enrollment data on a quarterly basis. The collected data assists CMCS in monitoring, managing, and better understanding Medicaid and CHIP programs. @@ -40,19 +41,21 @@ On each PR, a linter and prettier check runs. These checks must pass for a PR to - Run Eslint using `yarn lint` - Run Prettier using `npx prettier --write .` - ## Local Dev ### Running MDCT Workspace Setup -Team members are encouraged to setup all MDCT Products using the script located in the [MDCT Tools Repository](https://github.com/Enterprise-CMCS/macpro-mdct-tools). Please refer to the README for instructions running the MDCT Workspace Setup. After Running workspace setup team members can continue in this README for instructions on running the application locally. + +Team members are encouraged to setup all MDCT Products using the script located in the [MDCT Tools Repository](https://github.com/Enterprise-CMCS/macpro-mdct-tools). Please refer to the README for instructions running the MDCT Workspace Setup. After Running workspace setup team members can continue in this README for instructions on running the application locally. #### For developers that have run workspace setup running the applicaiton locally please run the following -1) cd ~/Projects/macpro-mdct-seds/ -2) `./run local --update-env` or `./run local` + +1. cd ~/Projects/macpro-mdct-seds/ +2. `./run local --update-env` or `./run local` note: the `./run local --update-env` command will reach out to 1Password to bring in secret values and populate .env files that are git ignored. If you use the `./run local` command you will need to have either previously run with the `--update-env flag` or provide your own .env files. #### For developers that cannot run the workspace setup script or wish to only run SEDS see steps below. + If you do not set don't have yarn, nvm, or java installed, see [Requirements](#requirements) Ensure you either have a 1Password account and have 1Password CLI installed. Alternatively, reach out to the team for an example of .env files. @@ -134,9 +137,9 @@ export function listUsers() { ### Adding New Forms (quarterly) -1. If necessary, create a new form template for the year in [src/database/initial_data_load/](src/database/initial_data_load/) +1. If necessary, create a new form template for the year in [services/database/data/initial_data_load/](services/database/data/initial_data_load/) 1. Example: `form_questions_2022.json` -2. Add the new form to seed > form-questions > sources in [services/data-deployment/serverless.yml](./services/data-deployment/serverless.yml) +2. Add the new form to seed > form-questions > sources in [services/database/handlers/seed](./services/database/handlers/seed/) Example: @@ -144,10 +147,10 @@ export function listUsers() { table: ${self:custom.stage}-form-questions sources: [ - ../../src/database/initial_data_load/form_questions_2022.json, - ../../src/database/initial_data_load/form_questions_2021.json, - ../../src/database/initial_data_load/form_questions_2020.json, - ../../src/database/initial_data_load/form_questions_2019.json, + data/initial_data_load/form_questions_2022.json, + data/initial_data_load/form_questions_2021.json, + data/initial_data_load/form_questions_2020.json, + data/initial_data_load/form_questions_2019.json, ] ``` @@ -182,7 +185,7 @@ found in [src/dms](src/dms). Validate json files against schema to ensure accuracy before each commit. - Schema Location: [src/database/schema/](src/database/schema/) -- Initial Data Location: [src/database/initial_data_load](src/database/initial_data_load) +- Initial Data Location: [services/database/data/initial_data_load](services/database/data/initial_data_load) 1. Install AJV globally in your environment 1. `npm install -g ajv-cli` @@ -248,7 +251,7 @@ Pull requests are being accepted. ## Slack Webhooks: -This repository uses 3 webhooks to publish to 3 different channels all in CMS Slack. +This repository uses 3 webhooks to publish to 3 different channels all in CMS Slack. - SLACK_WEBHOOK: This pubishes to the `macpro-mdct-seds-alerts` channel. Alerts published there are for deploy or test failures to the `master`, `val`, or `production` branches. @@ -256,10 +259,11 @@ This repository uses 3 webhooks to publish to 3 different channels all in CMS S - PROD_RELEASE_SLACK_WEBHOOK: This is used to publish to the `mdct-prod-releases` channel upon successful release of Seds to production. - - Webhooks are created by CMS tickets, populated into GitHub Secrets + - Webhooks are created by CMS tickets, populated into GitHub Secrets ## GitHub Actions Secret Management: -- Secrets are added to GitHub secrets by GitHub Admins + +- Secrets are added to GitHub secrets by GitHub Admins - Development secrets are maintained in a 1Password vault ## License @@ -278,5 +282,4 @@ work worldwide through the CC0 1.0 Universal public domain dedication. ### Contributors -This project made possible by the [Serverless Stack](https://serverless-stack.com/) and its authors/contributors. The extremely detailed tutorial, code examples, and serverless pattern is where this project started. - +This project made possible by the [Serverless Stack](https://serverless-stack.com/) and its authors/contributors. The extremely detailed tutorial, code examples, and serverless pattern is where this project started. diff --git a/services/data-deployment/.gitignore b/services/data-deployment/.gitignore deleted file mode 100644 index 2b48c8bd5..000000000 --- a/services/data-deployment/.gitignore +++ /dev/null @@ -1,6 +0,0 @@ -# package directories -node_modules -jspm_packages - -# Serverless directories -.serverless \ No newline at end of file diff --git a/services/data-deployment/package.json b/services/data-deployment/package.json deleted file mode 100644 index e4d700a89..000000000 --- a/services/data-deployment/package.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "name": "data-deployment", - "description": "", - "resolutions": { - "**/**/lodash": "^4.17.12", - "minimist": "^1.2.5" - }, - "version": "1.0.0", - "dependencies": { - "serverless-dynamodb-seed": "^0.3.0" - }, - "devDependencies": {} -} diff --git a/services/data-deployment/serverless.yml b/services/data-deployment/serverless.yml deleted file mode 100644 index 3d18abfd3..000000000 --- a/services/data-deployment/serverless.yml +++ /dev/null @@ -1,126 +0,0 @@ -service: data-deployment - -frameworkVersion: "3" - -plugins: - - serverless-s3-bucket-helper - - serverless-dynamodb-seed - - serverless-stack-termination-protection - -provider: - name: aws - region: us-east-1 - runtime: nodejs20.x - stackTags: - PROJECT: ${self:custom.project} - SERVICE: ${self:service} - -custom: - project: "seds" - stage: ${opt:stage, self:provider.stage} - region: ${opt:region, self:provider.region} - iamPath: ${ssm:/configuration/${self:custom.stage}/iam/path, ssm:/configuration/default/iam/path, "/"} - iamPermissionsBoundaryPolicy: ${ssm:/configuration/${self:custom.stage}/iam/permissionsBoundaryPolicy, ssm:/configuration/default/iam/permissionsBoundaryPolicy, ""} - serverlessTerminationProtection: - stages: # This is a list of common names for important envs that should not be destroyed. You can remove the stage names your project doesn't use; this list is meant to be inclusive. - - master - - val - - production - - develop - - main - - impl - - val - - prod - seed: - forms: - table: ${self:custom.stage}-forms - sources: [../../src/database/initial_data_load/forms.json] - age-ranges: - table: ${self:custom.stage}-age-ranges - sources: [../../src/database/initial_data_load/age_ranges.json] - status: - table: ${self:custom.stage}-status - sources: [../../src/database/initial_data_load/status.json] - states: - table: ${self:custom.stage}-states - sources: [../../src/database/initial_data_load/states.json] - state-forms: - table: ${self:custom.stage}-state-forms - sources: - [ - ../../src/database/initial_data_load/state_forms.json, - ../../src/database/initial_data_load/state_forms_2020.json, - ] - form-questions: - table: ${self:custom.stage}-form-questions - sources: - [ - ../../src/database/initial_data_load/form_questions_2021.json, - ../../src/database/initial_data_load/form_questions_2020.json, - ../../src/database/initial_data_load/form_questions_2019.json, - ] - form-templates: - table: ${self:custom.stage}-form-templates - sources: [../../src/database/initial_data_load/form_template_2019.json] - form-answers: - table: ${self:custom.stage}-form-answers - sources: - [ - ../../src/database/initial_data_load/form_answers_AL.json, - ../../src/database/initial_data_load/form_answers_AK.json, - ../../src/database/initial_data_load/form_answers_AZ.json, - ../../src/database/initial_data_load/form_answers_AR.json, - ../../src/database/initial_data_load/form_answers_CA.json, - ../../src/database/initial_data_load/form_answers_CO.json, - ../../src/database/initial_data_load/form_answers_CT.json, - ../../src/database/initial_data_load/form_answers_DE.json, - ../../src/database/initial_data_load/form_answers_DC.json, - ../../src/database/initial_data_load/form_answers_FL.json, - ../../src/database/initial_data_load/form_answers_GA.json, - ../../src/database/initial_data_load/form_answers_HI.json, - ../../src/database/initial_data_load/form_answers_ID.json, - ../../src/database/initial_data_load/form_answers_IL.json, - ../../src/database/initial_data_load/form_answers_IN.json, - ../../src/database/initial_data_load/form_answers_IA.json, - ../../src/database/initial_data_load/form_answers_KS.json, - ../../src/database/initial_data_load/form_answers_KY.json, - ../../src/database/initial_data_load/form_answers_LA.json, - ../../src/database/initial_data_load/form_answers_ME.json, - ../../src/database/initial_data_load/form_answers_MD.json, - ../../src/database/initial_data_load/form_answers_MA.json, - ../../src/database/initial_data_load/form_answers_MI.json, - ../../src/database/initial_data_load/form_answers_MN.json, - ../../src/database/initial_data_load/form_answers_MO.json, - ../../src/database/initial_data_load/form_answers_MS.json, - ../../src/database/initial_data_load/form_answers_MT.json, - ../../src/database/initial_data_load/form_answers_NE.json, - ../../src/database/initial_data_load/form_answers_NV.json, - ../../src/database/initial_data_load/form_answers_NH.json, - ../../src/database/initial_data_load/form_answers_NJ.json, - ../../src/database/initial_data_load/form_answers_NM.json, - ../../src/database/initial_data_load/form_answers_NY.json, - ../../src/database/initial_data_load/form_answers_NC.json, - ../../src/database/initial_data_load/form_answers_ND.json, - ../../src/database/initial_data_load/form_answers_OH.json, - ../../src/database/initial_data_load/form_answers_OK.json, - ../../src/database/initial_data_load/form_answers_OR.json, - ../../src/database/initial_data_load/form_answers_PA.json, - ../../src/database/initial_data_load/form_answers_RI.json, - ../../src/database/initial_data_load/form_answers_SC.json, - ../../src/database/initial_data_load/form_answers_SD.json, - ../../src/database/initial_data_load/form_answers_TN.json, - ../../src/database/initial_data_load/form_answers_TX.json, - ../../src/database/initial_data_load/form_answers_UT.json, - ../../src/database/initial_data_load/form_answers_VT.json, - ../../src/database/initial_data_load/form_answers_VA.json, - ../../src/database/initial_data_load/form_answers_WA.json, - ../../src/database/initial_data_load/form_answers_WV.json, - ../../src/database/initial_data_load/form_answers_WI.json, - ../../src/database/initial_data_load/form_answers_WY.json, - ] - auth-user: - table: ${self:custom.stage}-auth-user - sources: [../../src/database/initial_data_load/auth_user.json] - auth-user-roles: - table: ${self:custom.stage}-auth-user-roles - sources: [../../src/database/initial_data_load/auth_user_roles.json] diff --git a/services/data-deployment/yarn.lock b/services/data-deployment/yarn.lock deleted file mode 100644 index 0c98e8847..000000000 --- a/services/data-deployment/yarn.lock +++ /dev/null @@ -1,25 +0,0 @@ -# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. -# yarn lockfile v1 - - -bluebird@^3.7.2: - version "3.7.2" - resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" - integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== - -lodash@^4.17.12: - version "4.17.21" - resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" - integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== - -minimist@^1.2.5: - version "1.2.7" - resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.7.tgz#daa1c4d91f507390437c6a8bc01078e7000c4d18" - integrity sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g== - -serverless-dynamodb-seed@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/serverless-dynamodb-seed/-/serverless-dynamodb-seed-0.3.0.tgz#1c91337a603d89f09fb5d24a900c6aa419ed2c7c" - integrity sha512-wwfFh4wwmisRnMlEkNjx/x4srVv01gkjCR8tCkEtEFColsZe3ROC8eX/yFZl/tebix1nK1xi1oQwGF6QqYVZyQ== - dependencies: - bluebird "^3.7.2" diff --git a/services/database/README.md b/services/database/README.md index 31a363be6..7c29c6222 100644 --- a/services/database/README.md +++ b/services/database/README.md @@ -10,7 +10,7 @@ year and the old files moved there for historical retention as needed. SEDS data is seeded to a developer's local dynamodb via the serverless.yml file in services > database. -SEDS data is seeded to the AWS environments via the serverless.yml file in services > data-deployment. +SEDS data is seeded to the AWS environments via the serverless.yml file in services > database > handlers > seed. When seeding data, it is important to remember that any records in a table with a matching partition key will be OVERWRITTEN as part of the update process. Any records without a matching partition key will be inserted into the table. @@ -22,12 +22,12 @@ After the deployment has successfully occurred to both VAL and PROD, it is impor If the files are not removed from that yml file, they will be deployed again with the next merge and the records which the files relate to will be overwritten. 1. Prepare necessary json files for deployment -2. Add the files to services > data-deployment > serverless.yml to deploy them to AWS environments +2. Add the files to services > database > handlers > seed to deploy them to AWS environments 3. Add the files to services > database > serverless.yml to deploy them locally 4. Merge to `master` 5. Merge from `master` to `val` 6. Merge from `val` to `production` -7. Create a new branch and remove the loaded files from services > data-deployment > serverless.yml to stop the new data from being overwritten in AWS environments +7. Create a new branch and remove the loaded files from services > database > handlers > seed to stop the new data from being overwritten in AWS environments 8. Merge to `master` 9. Merge from `master` to `val` 10. Merge from `val` to `production` @@ -46,7 +46,7 @@ The best practice is: 1. Take the form_questions_XXXX.json file for the most recent year and copy it 2. Rename it to the new year 3. Find & Replace the most recent year with the new year -4. Add the new json file to the serverless.yml files in services > database and services > data-deployment +4. Add the new json file to the serverless.yml files in services > database and the handler in services > database > handlers > seed 5. Remove the load of the most recent year's form_questions_XXXX.json file (optional) 6. Archive the most recent year's form_questions_XXXX.json file (optional) diff --git a/src/database/initial_data_load/age_ranges.json b/services/database/data/initial_data_load/age_ranges.json similarity index 100% rename from src/database/initial_data_load/age_ranges.json rename to services/database/data/initial_data_load/age_ranges.json diff --git a/src/database/initial_data_load/api_sample.json b/services/database/data/initial_data_load/api_sample.json similarity index 100% rename from src/database/initial_data_load/api_sample.json rename to services/database/data/initial_data_load/api_sample.json diff --git a/src/database/initial_data_load/auth_user.json b/services/database/data/initial_data_load/auth_user.json similarity index 100% rename from src/database/initial_data_load/auth_user.json rename to services/database/data/initial_data_load/auth_user.json diff --git a/src/database/initial_data_load/auth_user_roles.json b/services/database/data/initial_data_load/auth_user_roles.json similarity index 100% rename from src/database/initial_data_load/auth_user_roles.json rename to services/database/data/initial_data_load/auth_user_roles.json diff --git a/src/database/initial_data_load/form_answers_AK.json b/services/database/data/initial_data_load/form_answers_AK.json similarity index 100% rename from src/database/initial_data_load/form_answers_AK.json rename to services/database/data/initial_data_load/form_answers_AK.json diff --git a/src/database/initial_data_load/form_answers_AL.json b/services/database/data/initial_data_load/form_answers_AL.json similarity index 100% rename from src/database/initial_data_load/form_answers_AL.json rename to services/database/data/initial_data_load/form_answers_AL.json diff --git a/src/database/initial_data_load/form_answers_AL_2020.json b/services/database/data/initial_data_load/form_answers_AL_2020.json similarity index 100% rename from src/database/initial_data_load/form_answers_AL_2020.json rename to services/database/data/initial_data_load/form_answers_AL_2020.json diff --git a/src/database/initial_data_load/form_answers_AL_2021Q1.json b/services/database/data/initial_data_load/form_answers_AL_2021Q1.json similarity index 100% rename from src/database/initial_data_load/form_answers_AL_2021Q1.json rename to services/database/data/initial_data_load/form_answers_AL_2021Q1.json diff --git a/src/database/initial_data_load/form_answers_AR.json b/services/database/data/initial_data_load/form_answers_AR.json similarity index 100% rename from src/database/initial_data_load/form_answers_AR.json rename to services/database/data/initial_data_load/form_answers_AR.json diff --git a/src/database/initial_data_load/form_answers_AZ.json b/services/database/data/initial_data_load/form_answers_AZ.json similarity index 100% rename from src/database/initial_data_load/form_answers_AZ.json rename to services/database/data/initial_data_load/form_answers_AZ.json diff --git a/src/database/initial_data_load/form_answers_CA.json b/services/database/data/initial_data_load/form_answers_CA.json similarity index 100% rename from src/database/initial_data_load/form_answers_CA.json rename to services/database/data/initial_data_load/form_answers_CA.json diff --git a/src/database/initial_data_load/form_answers_CO.json b/services/database/data/initial_data_load/form_answers_CO.json similarity index 100% rename from src/database/initial_data_load/form_answers_CO.json rename to services/database/data/initial_data_load/form_answers_CO.json diff --git a/src/database/initial_data_load/form_answers_CT.json b/services/database/data/initial_data_load/form_answers_CT.json similarity index 100% rename from src/database/initial_data_load/form_answers_CT.json rename to services/database/data/initial_data_load/form_answers_CT.json diff --git a/src/database/initial_data_load/form_answers_DC.json b/services/database/data/initial_data_load/form_answers_DC.json similarity index 100% rename from src/database/initial_data_load/form_answers_DC.json rename to services/database/data/initial_data_load/form_answers_DC.json diff --git a/src/database/initial_data_load/form_answers_DE.json b/services/database/data/initial_data_load/form_answers_DE.json similarity index 100% rename from src/database/initial_data_load/form_answers_DE.json rename to services/database/data/initial_data_load/form_answers_DE.json diff --git a/src/database/initial_data_load/form_answers_FL.json b/services/database/data/initial_data_load/form_answers_FL.json similarity index 100% rename from src/database/initial_data_load/form_answers_FL.json rename to services/database/data/initial_data_load/form_answers_FL.json diff --git a/src/database/initial_data_load/form_answers_GA.json b/services/database/data/initial_data_load/form_answers_GA.json similarity index 100% rename from src/database/initial_data_load/form_answers_GA.json rename to services/database/data/initial_data_load/form_answers_GA.json diff --git a/src/database/initial_data_load/form_answers_HI.json b/services/database/data/initial_data_load/form_answers_HI.json similarity index 100% rename from src/database/initial_data_load/form_answers_HI.json rename to services/database/data/initial_data_load/form_answers_HI.json diff --git a/src/database/initial_data_load/form_answers_IA.json b/services/database/data/initial_data_load/form_answers_IA.json similarity index 100% rename from src/database/initial_data_load/form_answers_IA.json rename to services/database/data/initial_data_load/form_answers_IA.json diff --git a/src/database/initial_data_load/form_answers_ID.json b/services/database/data/initial_data_load/form_answers_ID.json similarity index 100% rename from src/database/initial_data_load/form_answers_ID.json rename to services/database/data/initial_data_load/form_answers_ID.json diff --git a/src/database/initial_data_load/form_answers_IL.json b/services/database/data/initial_data_load/form_answers_IL.json similarity index 100% rename from src/database/initial_data_load/form_answers_IL.json rename to services/database/data/initial_data_load/form_answers_IL.json diff --git a/src/database/initial_data_load/form_answers_IN.json b/services/database/data/initial_data_load/form_answers_IN.json similarity index 100% rename from src/database/initial_data_load/form_answers_IN.json rename to services/database/data/initial_data_load/form_answers_IN.json diff --git a/src/database/initial_data_load/form_answers_KS.json b/services/database/data/initial_data_load/form_answers_KS.json similarity index 100% rename from src/database/initial_data_load/form_answers_KS.json rename to services/database/data/initial_data_load/form_answers_KS.json diff --git a/src/database/initial_data_load/form_answers_KY.json b/services/database/data/initial_data_load/form_answers_KY.json similarity index 100% rename from src/database/initial_data_load/form_answers_KY.json rename to services/database/data/initial_data_load/form_answers_KY.json diff --git a/src/database/initial_data_load/form_answers_LA.json b/services/database/data/initial_data_load/form_answers_LA.json similarity index 100% rename from src/database/initial_data_load/form_answers_LA.json rename to services/database/data/initial_data_load/form_answers_LA.json diff --git a/src/database/initial_data_load/form_answers_MA.json b/services/database/data/initial_data_load/form_answers_MA.json similarity index 100% rename from src/database/initial_data_load/form_answers_MA.json rename to services/database/data/initial_data_load/form_answers_MA.json diff --git a/src/database/initial_data_load/form_answers_MD.json b/services/database/data/initial_data_load/form_answers_MD.json similarity index 100% rename from src/database/initial_data_load/form_answers_MD.json rename to services/database/data/initial_data_load/form_answers_MD.json diff --git a/src/database/initial_data_load/form_answers_MD_2020.json b/services/database/data/initial_data_load/form_answers_MD_2020.json similarity index 100% rename from src/database/initial_data_load/form_answers_MD_2020.json rename to services/database/data/initial_data_load/form_answers_MD_2020.json diff --git a/src/database/initial_data_load/form_answers_MD_2021Q1.json b/services/database/data/initial_data_load/form_answers_MD_2021Q1.json similarity index 100% rename from src/database/initial_data_load/form_answers_MD_2021Q1.json rename to services/database/data/initial_data_load/form_answers_MD_2021Q1.json diff --git a/src/database/initial_data_load/form_answers_ME.json b/services/database/data/initial_data_load/form_answers_ME.json similarity index 100% rename from src/database/initial_data_load/form_answers_ME.json rename to services/database/data/initial_data_load/form_answers_ME.json diff --git a/src/database/initial_data_load/form_answers_MI.json b/services/database/data/initial_data_load/form_answers_MI.json similarity index 100% rename from src/database/initial_data_load/form_answers_MI.json rename to services/database/data/initial_data_load/form_answers_MI.json diff --git a/src/database/initial_data_load/form_answers_MN.json b/services/database/data/initial_data_load/form_answers_MN.json similarity index 100% rename from src/database/initial_data_load/form_answers_MN.json rename to services/database/data/initial_data_load/form_answers_MN.json diff --git a/src/database/initial_data_load/form_answers_MO.json b/services/database/data/initial_data_load/form_answers_MO.json similarity index 100% rename from src/database/initial_data_load/form_answers_MO.json rename to services/database/data/initial_data_load/form_answers_MO.json diff --git a/src/database/initial_data_load/form_answers_MS.json b/services/database/data/initial_data_load/form_answers_MS.json similarity index 100% rename from src/database/initial_data_load/form_answers_MS.json rename to services/database/data/initial_data_load/form_answers_MS.json diff --git a/src/database/initial_data_load/form_answers_MT.json b/services/database/data/initial_data_load/form_answers_MT.json similarity index 100% rename from src/database/initial_data_load/form_answers_MT.json rename to services/database/data/initial_data_load/form_answers_MT.json diff --git a/src/database/initial_data_load/form_answers_NC.json b/services/database/data/initial_data_load/form_answers_NC.json similarity index 100% rename from src/database/initial_data_load/form_answers_NC.json rename to services/database/data/initial_data_load/form_answers_NC.json diff --git a/src/database/initial_data_load/form_answers_ND.json b/services/database/data/initial_data_load/form_answers_ND.json similarity index 100% rename from src/database/initial_data_load/form_answers_ND.json rename to services/database/data/initial_data_load/form_answers_ND.json diff --git a/src/database/initial_data_load/form_answers_NE.json b/services/database/data/initial_data_load/form_answers_NE.json similarity index 100% rename from src/database/initial_data_load/form_answers_NE.json rename to services/database/data/initial_data_load/form_answers_NE.json diff --git a/src/database/initial_data_load/form_answers_NH.json b/services/database/data/initial_data_load/form_answers_NH.json similarity index 100% rename from src/database/initial_data_load/form_answers_NH.json rename to services/database/data/initial_data_load/form_answers_NH.json diff --git a/src/database/initial_data_load/form_answers_NJ.json b/services/database/data/initial_data_load/form_answers_NJ.json similarity index 100% rename from src/database/initial_data_load/form_answers_NJ.json rename to services/database/data/initial_data_load/form_answers_NJ.json diff --git a/src/database/initial_data_load/form_answers_NM.json b/services/database/data/initial_data_load/form_answers_NM.json similarity index 100% rename from src/database/initial_data_load/form_answers_NM.json rename to services/database/data/initial_data_load/form_answers_NM.json diff --git a/src/database/initial_data_load/form_answers_NV.json b/services/database/data/initial_data_load/form_answers_NV.json similarity index 100% rename from src/database/initial_data_load/form_answers_NV.json rename to services/database/data/initial_data_load/form_answers_NV.json diff --git a/src/database/initial_data_load/form_answers_NY.json b/services/database/data/initial_data_load/form_answers_NY.json similarity index 100% rename from src/database/initial_data_load/form_answers_NY.json rename to services/database/data/initial_data_load/form_answers_NY.json diff --git a/src/database/initial_data_load/form_answers_OH.json b/services/database/data/initial_data_load/form_answers_OH.json similarity index 100% rename from src/database/initial_data_load/form_answers_OH.json rename to services/database/data/initial_data_load/form_answers_OH.json diff --git a/src/database/initial_data_load/form_answers_OK.json b/services/database/data/initial_data_load/form_answers_OK.json similarity index 100% rename from src/database/initial_data_load/form_answers_OK.json rename to services/database/data/initial_data_load/form_answers_OK.json diff --git a/src/database/initial_data_load/form_answers_OR.json b/services/database/data/initial_data_load/form_answers_OR.json similarity index 100% rename from src/database/initial_data_load/form_answers_OR.json rename to services/database/data/initial_data_load/form_answers_OR.json diff --git a/src/database/initial_data_load/form_answers_PA.json b/services/database/data/initial_data_load/form_answers_PA.json similarity index 100% rename from src/database/initial_data_load/form_answers_PA.json rename to services/database/data/initial_data_load/form_answers_PA.json diff --git a/src/database/initial_data_load/form_answers_PA_2020.json b/services/database/data/initial_data_load/form_answers_PA_2020.json similarity index 100% rename from src/database/initial_data_load/form_answers_PA_2020.json rename to services/database/data/initial_data_load/form_answers_PA_2020.json diff --git a/src/database/initial_data_load/form_answers_PA_2021Q1.json b/services/database/data/initial_data_load/form_answers_PA_2021Q1.json similarity index 100% rename from src/database/initial_data_load/form_answers_PA_2021Q1.json rename to services/database/data/initial_data_load/form_answers_PA_2021Q1.json diff --git a/src/database/initial_data_load/form_answers_RI.json b/services/database/data/initial_data_load/form_answers_RI.json similarity index 100% rename from src/database/initial_data_load/form_answers_RI.json rename to services/database/data/initial_data_load/form_answers_RI.json diff --git a/src/database/initial_data_load/form_answers_SC.json b/services/database/data/initial_data_load/form_answers_SC.json similarity index 100% rename from src/database/initial_data_load/form_answers_SC.json rename to services/database/data/initial_data_load/form_answers_SC.json diff --git a/src/database/initial_data_load/form_answers_SD.json b/services/database/data/initial_data_load/form_answers_SD.json similarity index 100% rename from src/database/initial_data_load/form_answers_SD.json rename to services/database/data/initial_data_load/form_answers_SD.json diff --git a/src/database/initial_data_load/form_answers_TN.json b/services/database/data/initial_data_load/form_answers_TN.json similarity index 100% rename from src/database/initial_data_load/form_answers_TN.json rename to services/database/data/initial_data_load/form_answers_TN.json diff --git a/src/database/initial_data_load/form_answers_TX.json b/services/database/data/initial_data_load/form_answers_TX.json similarity index 100% rename from src/database/initial_data_load/form_answers_TX.json rename to services/database/data/initial_data_load/form_answers_TX.json diff --git a/src/database/initial_data_load/form_answers_UT.json b/services/database/data/initial_data_load/form_answers_UT.json similarity index 100% rename from src/database/initial_data_load/form_answers_UT.json rename to services/database/data/initial_data_load/form_answers_UT.json diff --git a/src/database/initial_data_load/form_answers_VA.json b/services/database/data/initial_data_load/form_answers_VA.json similarity index 100% rename from src/database/initial_data_load/form_answers_VA.json rename to services/database/data/initial_data_load/form_answers_VA.json diff --git a/src/database/initial_data_load/form_answers_VT.json b/services/database/data/initial_data_load/form_answers_VT.json similarity index 100% rename from src/database/initial_data_load/form_answers_VT.json rename to services/database/data/initial_data_load/form_answers_VT.json diff --git a/src/database/initial_data_load/form_answers_WA.json b/services/database/data/initial_data_load/form_answers_WA.json similarity index 100% rename from src/database/initial_data_load/form_answers_WA.json rename to services/database/data/initial_data_load/form_answers_WA.json diff --git a/src/database/initial_data_load/form_answers_WI.json b/services/database/data/initial_data_load/form_answers_WI.json similarity index 100% rename from src/database/initial_data_load/form_answers_WI.json rename to services/database/data/initial_data_load/form_answers_WI.json diff --git a/src/database/initial_data_load/form_answers_WV.json b/services/database/data/initial_data_load/form_answers_WV.json similarity index 100% rename from src/database/initial_data_load/form_answers_WV.json rename to services/database/data/initial_data_load/form_answers_WV.json diff --git a/src/database/initial_data_load/form_answers_WY.json b/services/database/data/initial_data_load/form_answers_WY.json similarity index 100% rename from src/database/initial_data_load/form_answers_WY.json rename to services/database/data/initial_data_load/form_answers_WY.json diff --git a/src/database/initial_data_load/form_answers_template.json b/services/database/data/initial_data_load/form_answers_template.json similarity index 100% rename from src/database/initial_data_load/form_answers_template.json rename to services/database/data/initial_data_load/form_answers_template.json diff --git a/src/database/initial_data_load/form_questions_2019.json b/services/database/data/initial_data_load/form_questions_2019.json similarity index 100% rename from src/database/initial_data_load/form_questions_2019.json rename to services/database/data/initial_data_load/form_questions_2019.json diff --git a/src/database/initial_data_load/form_questions_2020.json b/services/database/data/initial_data_load/form_questions_2020.json similarity index 100% rename from src/database/initial_data_load/form_questions_2020.json rename to services/database/data/initial_data_load/form_questions_2020.json diff --git a/src/database/initial_data_load/form_questions_2021.json b/services/database/data/initial_data_load/form_questions_2021.json similarity index 100% rename from src/database/initial_data_load/form_questions_2021.json rename to services/database/data/initial_data_load/form_questions_2021.json diff --git a/services/database/data/initial_data_load/form_template_2019.json b/services/database/data/initial_data_load/form_template_2019.json new file mode 100644 index 000000000..772de9550 --- /dev/null +++ b/services/database/data/initial_data_load/form_template_2019.json @@ -0,0 +1,2830 @@ +[ + { + "year": 2019, + "template": [ + { + "question": "2019-21E-01", + "form_id": "1", + "form": "21E", + "year": 2019, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "label": "What is the unduplicated number of children &&&VARIABLE&&& ever enrolled during the quarter?", + "age_ranges": [ + { "key": "0000", "label": "Under Age 0" }, + { "key": "0001", "label": "Ages 0 - 1" }, + { "key": "0105", "label": "Ages 1 - 5" }, + { "key": "0612", "label": "Ages 6 - 12" }, + { "key": "1318", "label": "Ages 13 - 18" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2019-01-15T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2019-01-15T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2019-21E-02", + "form_id": "1", + "form": "21E", + "year": 2019, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "label": "What is the unduplicated number of new enrollees &&&VARIABLE&&& in the quarter?", + "age_ranges": [ + { "key": "0000", "label": "Under Age 0" }, + { "key": "0001", "label": "Ages 0 - 1" }, + { "key": "0105", "label": "Ages 1 - 5" }, + { "key": "0612", "label": "Ages 6 - 12" }, + { "key": "1318", "label": "Ages 13 - 18" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2019-01-15T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2019-01-15T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2019-21E-03", + "form_id": "1", + "form": "21E", + "year": 2019, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "label": "What is the unduplicated number of disenrollees &&&VARIABLE&&& in the quarter?", + "age_ranges": [ + { "key": "0000", "label": "Under Age 0" }, + { "key": "0001", "label": "Ages 0 - 1" }, + { "key": "0105", "label": "Ages 1 - 5" }, + { "key": "0612", "label": "Ages 6 - 12" }, + { "key": "1318", "label": "Ages 13 - 18" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2019-01-15T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2019-01-15T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2019-21E-04", + "form_id": "1", + "form": "21E", + "year": 2019, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "label": "What is the number of member-months of enrollment for children &&&VARIABLE&&& in the quarter?", + "age_ranges": [ + { "key": "0000", "label": "Under Age 0" }, + { "key": "0001", "label": "Ages 0 - 1" }, + { "key": "0105", "label": "Ages 1 - 5" }, + { "key": "0612", "label": "Ages 6 - 12" }, + { "key": "1318", "label": "Ages 13 - 18" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2019-01-15T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2019-01-15T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2019-21E-05", + "form_id": "1", + "form": "21E", + "year": 2019, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "label": "What is the average number of months of enrollment for children &&&VARIABLE&&& ever enrolled during the quarter?", + "readonly": true, + "comment": "Divide the entries in Question 4 by the entries in Question 1.", + "age_ranges": [ + { "key": "0000", "label": "Under Age 0" }, + { "key": "0001", "label": "Ages 0 - 1" }, + { "key": "0105", "label": "Ages 1 - 5" }, + { "key": "0612", "label": "Ages 6 - 12" }, + { "key": "1318", "label": "Ages 13 - 18" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": [ + { + "targets": [ + "$..[?(@.question=='2019-21E-04')].rows[1].col2", + "$..[?(@.question=='2019-21E-01')].rows[1].col2" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col3": [ + { + "targets": [ + "$..[?(@.question=='2019-21E-04')].rows[1].col3", + "$..[?(@.question=='2019-21E-01')].rows[1].col3" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col4": [ + { + "targets": [ + "$..[?(@.question=='2019-21E-04')].rows[1].col4", + "$..[?(@.question=='2019-21E-01')].rows[1].col4" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col5": [ + { + "targets": [ + "$..[?(@.question=='2019-21E-04')].rows[1].col5", + "$..[?(@.question=='2019-21E-01')].rows[1].col5" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col6": [ + { + "targets": [ + "$..[?(@.question=='2019-21E-04')].rows[1].col6", + "$..[?(@.question=='2019-21E-01')].rows[1].col6" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ] + }, + { + "col1": "B. Managed Care Arrangements", + "col2": [ + { + "targets": [ + "$..[?(@.question=='2019-21E-04')].rows[2].col2", + "$..[?(@.question=='2019-21E-01')].rows[2].col2" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col3": [ + { + "targets": [ + "$..[?(@.question=='2019-21E-04')].rows[2].col3", + "$..[?(@.question=='2019-21E-01')].rows[2].col3" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col4": [ + { + "targets": [ + "$..[?(@.question=='2019-21E-04')].rows[2].col4", + "$..[?(@.question=='2019-21E-01')].rows[2].col4" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col5": [ + { + "targets": [ + "$..[?(@.question=='2019-21E-04')].rows[2].col5", + "$..[?(@.question=='2019-21E-01')].rows[2].col5" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col6": [ + { + "targets": [ + "$..[?(@.question=='2019-21E-04')].rows[2].col6", + "$..[?(@.question=='2019-21E-01')].rows[2].col6" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ] + }, + { + "col1": "C. Primary Care Case Management", + "col2": [ + { + "targets": [ + "$..[?(@.question=='2019-21E-04')].rows[3].col2", + "$..[?(@.question=='2019-21E-01')].rows[3].col2" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col3": [ + { + "targets": [ + "$..[?(@.question=='2019-21E-04')].rows[3].col3", + "$..[?(@.question=='2019-21E-01')].rows[3].col3" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col4": [ + { + "targets": [ + "$..[?(@.question=='2019-21E-04')].rows[3].col4", + "$..[?(@.question=='2019-21E-01')].rows[3].col4" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col5": [ + { + "targets": [ + "$..[?(@.question=='2019-21E-04')].rows[3].col5", + "$..[?(@.question=='2019-21E-01')].rows[3].col5" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col6": [ + { + "targets": [ + "$..[?(@.question=='2019-21E-04')].rows[3].col6", + "$..[?(@.question=='2019-21E-01')].rows[3].col6" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ] + } + ], + "last_modified": "2019-01-15T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2019-01-15T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2019-21E-06", + "form_id": "1", + "form": "21E", + "year": 2019, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "label": "What is the number of children &&&VARIABLE&&& enrolled at the end of the quarter?", + "age_ranges": [ + { "key": "0000", "label": "Under Age 0" }, + { "key": "0001", "label": "Ages 0 - 1" }, + { "key": "0105", "label": "Ages 1 - 5" }, + { "key": "0612", "label": "Ages 6 - 12" }, + { "key": "1318", "label": "Ages 13 - 18" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2019-01-15T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2019-01-15T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2019-21E-07", + "form_id": "1", + "form": "21E", + "year": 2019, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "context_data": { + "show_if_quarter_in": ["4"] + }, + "label": "What is the unduplicated number of children &&&VARIABLE&&& ever enrolled during the year?", + "age_ranges": [ + { "key": "0000", "label": "Under Age 0" }, + { "key": "0001", "label": "Ages 0 - 1" }, + { "key": "0105", "label": "Ages 1 - 5" }, + { "key": "0612", "label": "Ages 6 - 12" }, + { "key": "1318", "label": "Ages 13 - 18" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2019-01-15T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2019-01-15T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2019-21E-08", + "form_id": "1", + "form": "21E", + "year": 2019, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "context_data": { + "show_if_quarter_in": ["4"] + }, + "label": "What is the unduplicated number of new enrollees &&&VARIABLE&&& during the year?", + "age_ranges": [ + { "key": "0000", "label": "Under Age 0" }, + { "key": "0001", "label": "Ages 0 - 1" }, + { "key": "0105", "label": "Ages 1 - 5" }, + { "key": "0612", "label": "Ages 6 - 12" }, + { "key": "1318", "label": "Ages 13 - 18" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2019-01-15T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2019-01-15T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2019-21E-09", + "form_id": "1", + "form": "21E", + "year": 2019, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "context_data": { + "show_if_quarter_in": ["4"] + }, + "label": "What is the unduplicated number of disenrollees &&&VARIABLE&&& during the year?", + "age_ranges": [ + { "key": "0000", "label": "Under Age 0" }, + { "key": "0001", "label": "Ages 0 - 1" }, + { "key": "0105", "label": "Ages 1 - 5" }, + { "key": "0612", "label": "Ages 6 - 12" }, + { "key": "1318", "label": "Ages 13 - 18" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2019-01-15T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2019-01-15T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2019-21PW-01", + "form_id": "6", + "form": "21PW", + "year": 2019, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "label": "What is the unduplicated number of pregnant women ever enrolled during the quarter?", + "age_ranges": [ + { "key": "1964", "label": "Age 19 years through age 64 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2019-10-01T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2019-10-01T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2019-21PW-02", + "form_id": "6", + "form": "21PW", + "year": 2019, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "label": "What is the unduplicated number of new enrollees in the quarter?", + "age_ranges": [ + { "key": "1964", "label": "Age 19 years through age 64 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2019-10-01T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2019-10-01T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2019-21PW-03", + "form_id": "6", + "form": "21PW", + "year": 2019, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "label": "What is the unduplicated number of disenrollees in the quarter?", + "age_ranges": [ + { "key": "1964", "label": "Age 19 years through age 64 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2019-10-01T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2019-10-01T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2019-21PW-04", + "form_id": "6", + "form": "21PW", + "year": 2019, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "label": "What is the number of member-months of enrollment for pregnant women in the quarter?", + "age_ranges": [ + { "key": "1964", "label": "Age 19 years through age 64 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2019-10-01T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2019-10-01T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2019-21PW-05", + "form_id": "6", + "form": "21PW", + "year": 2019, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "label": "What is the average number of months of enrollment for pregnant women ever enrolled during the quarter?", + "readonly": true, + "comment": "Divide the entries in Question 4 by the entries in Question 1.", + "age_ranges": [ + { "key": "1964", "label": "Age 19 years through age 64 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301" + }, + { + "col1": "A. Fee-for-Service", + "col2": [ + { + "targets": [ + "$..[?(@.question=='2019-21PW-04')].rows[1].col2", + "$..[?(@.question=='2019-21PW-01')].rows[1].col2" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col3": [ + { + "targets": [ + "$..[?(@.question=='2019-21PW-04')].rows[1].col3", + "$..[?(@.question=='2019-21PW-01')].rows[1].col3" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col4": [ + { + "targets": [ + "$..[?(@.question=='2019-21PW-04')].rows[1].col4", + "$..[?(@.question=='2019-21PW-01')].rows[1].col4" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col5": [ + { + "targets": [ + "$..[?(@.question=='2019-21PW-04')].rows[1].col5", + "$..[?(@.question=='2019-21PW-01')].rows[1].col5" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col6": [ + { + "targets": [ + "$..[?(@.question=='2019-21PW-04')].rows[1].col6", + "$..[?(@.question=='2019-21PW-01')].rows[1].col6" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ] + }, + { + "col1": "B. Managed Care Arrangements", + "col2": [ + { + "targets": [ + "$..[?(@.question=='2019-21PW-04')].rows[2].col2", + "$..[?(@.question=='2019-21PW-01')].rows[2].col2" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col3": [ + { + "targets": [ + "$..[?(@.question=='2019-21PW-04')].rows[2].col3", + "$..[?(@.question=='2019-21PW-01')].rows[2].col3" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col4": [ + { + "targets": [ + "$..[?(@.question=='2019-21PW-04')].rows[2].col4", + "$..[?(@.question=='2019-21PW-01')].rows[2].col4" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col5": [ + { + "targets": [ + "$..[?(@.question=='2019-21PW-04')].rows[2].col5", + "$..[?(@.question=='2019-21PW-01')].rows[2].col5" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col6": [ + { + "targets": [ + "$..[?(@.question=='2019-21PW-04')].rows[2].col6", + "$..[?(@.question=='2019-21PW-01')].rows[2].col6" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ] + }, + { + "col1": "C. Primary Care Case Management", + "col2": [ + { + "targets": [ + "$..[?(@.question=='2019-21PW-04')].rows[3].col2", + "$..[?(@.question=='2019-21PW-01')].rows[3].col2" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col3": [ + { + "targets": [ + "$..[?(@.question=='2019-21PW-04')].rows[3].col3", + "$..[?(@.question=='2019-21PW-01')].rows[3].col3" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col4": [ + { + "targets": [ + "$..[?(@.question=='2019-21PW-04')].rows[3].col4", + "$..[?(@.question=='2019-21PW-01')].rows[3].col4" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col5": [ + { + "targets": [ + "$..[?(@.question=='2019-21PW-04')].rows[3].col5", + "$..[?(@.question=='2019-21PW-01')].rows[3].col5" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col6": [ + { + "targets": [ + "$..[?(@.question=='2019-21PW-04')].rows[3].col6", + "$..[?(@.question=='2019-21PW-01')].rows[3].col6" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ] + } + ], + "last_modified": "2019-10-01T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2019-10-01T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2019-21PW-06", + "form_id": "6", + "form": "21PW", + "year": 2019, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "label": "What is the number of pregnant women enrolled at the end of the quarter?", + "age_ranges": [ + { "key": "1964", "label": "Age 19 years through age 64 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2019-10-01T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2019-10-01T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2019-21PW-07", + "form_id": "6", + "form": "21PW", + "year": 2019, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "context_data": { + "show_if_quarter_in": ["4"] + }, + "label": "What is the unduplicated number of pregnant women ever enrolled during the year?", + "age_ranges": [ + { "key": "1964", "label": "Age 19 years through age 64 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2019-10-01T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2019-10-01T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2019-21PW-08", + "form_id": "6", + "form": "21PW", + "year": 2019, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "context_data": { + "show_if_quarter_in": ["4"] + }, + "label": "What is the unduplicated number of new enrollees during the year?", + "age_ranges": [ + { "key": "1964", "label": "Age 19 years through age 64 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2019-10-01T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2019-10-01T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2019-21PW-09", + "form_id": "6", + "form": "21PW", + "year": 2019, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "context_data": { + "show_if_quarter_in": ["4"] + }, + "label": "What is the unduplicated number of disenrollees during the year?", + "age_ranges": [ + { "key": "1964", "label": "Age 19 years through age 64 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2019-10-01T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2019-10-01T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2019-64.21E-01", + "form_id": "3", + "form": "64.21E", + "year": 2019, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "label": "What is the unduplicated number of children &&&VARIABLE&&& ever enrolled during the quarter?", + "age_ranges": [ + { "key": "0001", "label": "Birth through age 12 months" }, + { "key": "0105", "label": "Age 1 year through age 5 years" }, + { "key": "0612", "label": "Age 6 years through age 12 years" }, + { "key": "1318", "label": "Age 13 years through age 18 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2019-01-15T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2019-01-15T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2019-64.21E-02", + "form_id": "3", + "form": "64.21E", + "year": 2019, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "label": "What is the unduplicated number of new enrollees &&&VARIABLE&&& in the quarter?", + "age_ranges": [ + { "key": "0001", "label": "Birth through age 12 months" }, + { "key": "0105", "label": "Age 1 year through age 5 years" }, + { "key": "0612", "label": "Age 6 years through age 12 years" }, + { "key": "1318", "label": "Age 13 years through age 18 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2019-01-15T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2019-01-15T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2019-64.21E-03", + "form_id": "3", + "form": "64.21E", + "year": 2019, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "label": "What is the unduplicated number of disenrollees &&&VARIABLE&&& in the quarter?", + "age_ranges": [ + { "key": "0001", "label": "Birth through age 12 months" }, + { "key": "0105", "label": "Age 1 year through age 5 years" }, + { "key": "0612", "label": "Age 6 years through age 12 years" }, + { "key": "1318", "label": "Age 13 years through age 18 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2019-01-15T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2019-01-15T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2019-64.21E-04", + "form_id": "3", + "form": "64.21E", + "year": 2019, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "label": "What is the number of member-months of enrollment for children &&&VARIABLE&&& in the quarter?", + "age_ranges": [ + { "key": "0001", "label": "Birth through age 12 months" }, + { "key": "0105", "label": "Age 1 year through age 5 years" }, + { "key": "0612", "label": "Age 6 years through age 12 years" }, + { "key": "1318", "label": "Age 13 years through age 18 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2019-01-15T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2019-01-15T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2019-64.21E-05", + "form_id": "3", + "form": "64.21E", + "year": 2019, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "label": "What is the average number of months of enrollment for children &&&VARIABLE&&& ever enrolled during the quarter?", + "readonly": true, + "comment": "Divide the entries in Question 4 by the entries in Question 1.", + "age_ranges": [ + { "key": "0001", "label": "Birth through age 12 months" }, + { "key": "0105", "label": "Age 1 year through age 5 years" }, + { "key": "0612", "label": "Age 6 years through age 12 years" }, + { "key": "1318", "label": "Age 13 years through age 18 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": [ + { + "targets": [ + "$..[?(@.question=='2019-64.21E-04')].rows[1].col2", + "$..[?(@.question=='2019-64.21E-01')].rows[1].col2" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col3": [ + { + "targets": [ + "$..[?(@.question=='2019-64.21E-04')].rows[1].col3", + "$..[?(@.question=='2019-64.21E-01')].rows[1].col3" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col4": [ + { + "targets": [ + "$..[?(@.question=='2019-64.21E-04')].rows[1].col4", + "$..[?(@.question=='2019-64.21E-01')].rows[1].col4" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col5": [ + { + "targets": [ + "$..[?(@.question=='2019-64.21E-04')].rows[1].col5", + "$..[?(@.question=='2019-64.21E-01')].rows[1].col5" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col6": [ + { + "targets": [ + "$..[?(@.question=='2019-64.21E-04')].rows[1].col6", + "$..[?(@.question=='2019-64.21E-01')].rows[1].col6" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ] + }, + { + "col1": "B. Managed Care Arrangements", + "col2": [ + { + "targets": [ + "$..[?(@.question=='2019-64.21E-04')].rows[2].col2", + "$..[?(@.question=='2019-64.21E-01')].rows[2].col2" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col3": [ + { + "targets": [ + "$..[?(@.question=='2019-64.21E-04')].rows[2].col3", + "$..[?(@.question=='2019-64.21E-01')].rows[2].col3" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col4": [ + { + "targets": [ + "$..[?(@.question=='2019-64.21E-04')].rows[2].col4", + "$..[?(@.question=='2019-64.21E-01')].rows[2].col4" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col5": [ + { + "targets": [ + "$..[?(@.question=='2019-64.21E-04')].rows[2].col5", + "$..[?(@.question=='2019-64.21E-01')].rows[2].col5" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col6": [ + { + "targets": [ + "$..[?(@.question=='2019-64.21E-04')].rows[2].col6", + "$..[?(@.question=='2019-64.21E-01')].rows[2].col6" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ] + }, + { + "col1": "C. Primary Care Case Management", + "col2": [ + { + "targets": [ + "$..[?(@.question=='2019-64.21E-04')].rows[3].col2", + "$..[?(@.question=='2019-64.21E-01')].rows[3].col2" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col3": [ + { + "targets": [ + "$..[?(@.question=='2019-64.21E-04')].rows[3].col3", + "$..[?(@.question=='2019-64.21E-01')].rows[3].col3" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col4": [ + { + "targets": [ + "$..[?(@.question=='2019-64.21E-04')].rows[3].col4", + "$..[?(@.question=='2019-64.21E-01')].rows[3].col4" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col5": [ + { + "targets": [ + "$..[?(@.question=='2019-64.21E-04')].rows[3].col5", + "$..[?(@.question=='2019-64.21E-01')].rows[3].col5" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col6": [ + { + "targets": [ + "$..[?(@.question=='2019-64.21E-04')].rows[3].col6", + "$..[?(@.question=='2019-64.21E-01')].rows[3].col6" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ] + } + ], + "last_modified": "2019-01-15T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2019-01-15T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2019-64.21E-06", + "form_id": "3", + "form": "64.21E", + "year": 2019, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "label": "What is the number of children &&&VARIABLE&&& enrolled at the end of the quarter?", + "age_ranges": [ + { "key": "0001", "label": "Birth through age 12 months" }, + { "key": "0105", "label": "Age 1 year through age 5 years" }, + { "key": "0612", "label": "Age 6 years through age 12 years" }, + { "key": "1318", "label": "Age 13 years through age 18 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2019-01-15T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2019-01-15T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2019-64.21E-07", + "form_id": "3", + "form": "64.21E", + "year": 2019, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "context_data": { + "show_if_quarter_in": ["4"] + }, + "label": "What is the unduplicated number of children &&&VARIABLE&&& ever enrolled during the year?", + "age_ranges": [ + { "key": "0001", "label": "Birth through age 12 months" }, + { "key": "0105", "label": "Age 1 year through age 5 years" }, + { "key": "0612", "label": "Age 6 years through age 12 years" }, + { "key": "1318", "label": "Age 13 years through age 18 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2019-01-15T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2019-01-15T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2019-64.21E-08", + "form_id": "3", + "form": "64.21E", + "year": 2019, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "context_data": { + "show_if_quarter_in": ["4"] + }, + "label": "What is the unduplicated number of new enrollees &&&VARIABLE&&& during the year?", + "age_ranges": [ + { "key": "0001", "label": "Birth through age 12 months" }, + { "key": "0105", "label": "Age 1 year through age 5 years" }, + { "key": "0612", "label": "Age 6 years through age 12 years" }, + { "key": "1318", "label": "Age 13 years through age 18 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2019-01-15T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2019-01-15T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2019-64.21E-09", + "form_id": "3", + "form": "64.21E", + "year": 2019, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "context_data": { + "show_if_quarter_in": ["4"] + }, + "label": "What is the unduplicated number of disenrollees &&&VARIABLE&&& during the year?", + "age_ranges": [ + { "key": "0001", "label": "Birth through age 12 months" }, + { "key": "0105", "label": "Age 1 year through age 5 years" }, + { "key": "0612", "label": "Age 6 years through age 12 years" }, + { "key": "1318", "label": "Age 13 years through age 18 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2019-01-15T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2019-01-15T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2019-64.EC-01", + "form": "64.EC", + "year": 2019, + "type": "datagridwithtotals", + "rowTotal": true, + "columnTotal": true, + "label": "What is the unduplicated number of children &&&VARIABLE&&& ever enrolled during the quarter?", + "age_ranges": [ + { "key": "0001", "label": "Birth through age 12 months" }, + { "key": "0105", "label": "Age 1 year through age 5 years" }, + { "key": "0612", "label": "Age 6 years through age 12 years" }, + { "key": "1318", "label": "Age 13 years through age 18 years" }, + { "key": "1920", "label": "Age 19 years through age 20 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "lastModified": "2019-01-15T12:46:35.838Z", + "lastModifiedBY": "seed", + "createdDate": "2019-01-15T12:46:35.838Z", + "createdBY": "seed" + }, + { + "question": "2019-64.EC-02", + "form": "64.EC", + "year": 2019, + "type": "datagridwithtotals", + "rowTotal": true, + "columnTotal": true, + "label": "What is the unduplicated number of new enrollees &&&VARIABLE&&& in the quarter?", + "age_ranges": [ + { "key": "0001", "label": "Birth through age 12 months" }, + { "key": "0105", "label": "Age 1 year through age 5 years" }, + { "key": "0612", "label": "Age 6 years through age 12 years" }, + { "key": "1318", "label": "Age 13 years through age 18 years" }, + { "key": "1920", "label": "Age 19 years through age 20 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "lastModified": "2019-01-15T12:46:35.838Z", + "lastModifiedBY": "seed", + "createdDate": "2019-01-15T12:46:35.838Z", + "createdBY": "seed" + }, + { + "question": "2019-64.EC-03", + "form": "64.EC", + "year": 2019, + "type": "datagridwithtotals", + "rowTotal": true, + "columnTotal": true, + "label": "What is the unduplicated number of disenrollees &&&VARIABLE&&& in the quarter?", + "age_ranges": [ + { "key": "0001", "label": "Birth through age 12 months" }, + { "key": "0105", "label": "Age 1 year through age 5 years" }, + { "key": "0612", "label": "Age 6 years through age 12 years" }, + { "key": "1318", "label": "Age 13 years through age 18 years" }, + { "key": "1920", "label": "Age 19 years through age 20 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "lastModified": "2019-01-15T12:46:35.838Z", + "lastModifiedBY": "seed", + "createdDate": "2019-01-15T12:46:35.838Z", + "createdBY": "seed" + }, + { + "question": "2019-64.EC-04", + "form": "64.EC", + "year": 2019, + "type": "datagridwithtotals", + "rowTotal": true, + "columnTotal": true, + "label": "What is the number of member-months of enrollment for children &&&VARIABLE&&& in the quarter?", + "age_ranges": [ + { "key": "0001", "label": "Birth through age 12 months" }, + { "key": "0105", "label": "Age 1 year through age 5 years" }, + { "key": "0612", "label": "Age 6 years through age 12 years" }, + { "key": "1318", "label": "Age 13 years through age 18 years" }, + { "key": "1920", "label": "Age 19 years through age 20 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "lastModified": "2019-01-15T12:46:35.838Z", + "lastModifiedBY": "seed", + "createdDate": "2019-01-15T12:46:35.838Z", + "createdBY": "seed" + }, + { + "question": "2019-64.EC-05", + "form": "64.EC", + "year": 2019, + "type": "datagridwithtotals", + "rowTotal": true, + "columnTotal": true, + "label": "What is the average number of months of enrollment for children &&&VARIABLE&&& ever enrolled during the quarter?", + "readonly": true, + "comment": "Divide the entries in Question 4 by the entries in Question 1.", + "age_ranges": [ + { "key": "0001", "label": "Birth through age 12 months" }, + { "key": "0105", "label": "Age 1 year through age 5 years" }, + { "key": "0612", "label": "Age 6 years through age 12 years" }, + { "key": "1318", "label": "Age 13 years through age 18 years" }, + { "key": "1920", "label": "Age 19 years through age 20 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": [ + { + "targets": [ + "$..[?(@.question=='2019-64.EC-04')].rows[1].col2", + "$..[?(@.question=='2019-64.EC-01')].rows[1].col2" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col3": [ + { + "targets": [ + "$..[?(@.question=='2019-64.EC-04')].rows[1].col3", + "$..[?(@.question=='2019-64.EC-01')].rows[1].col3" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col4": [ + { + "targets": [ + "$..[?(@.question=='2019-64.EC-04')].rows[1].col4", + "$..[?(@.question=='2019-64.EC-01')].rows[1].col4" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col5": [ + { + "targets": [ + "$..[?(@.question=='2019-64.EC-04')].rows[1].col5", + "$..[?(@.question=='2019-64.EC-01')].rows[1].col5" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col6": [ + { + "targets": [ + "$..[?(@.question=='2019-64.EC-04')].rows[1].col6", + "$..[?(@.question=='2019-64.EC-01')].rows[1].col6" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ] + }, + { + "col1": "B. Managed Care Arrangements", + "col2": [ + { + "targets": [ + "$..[?(@.question=='2019-64.EC-04')].rows[2].col2", + "$..[?(@.question=='2019-64.EC-01')].rows[2].col2" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col3": [ + { + "targets": [ + "$..[?(@.question=='2019-64.EC-04')].rows[2].col3", + "$..[?(@.question=='2019-64.EC-01')].rows[2].col3" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col4": [ + { + "targets": [ + "$..[?(@.question=='2019-64.EC-04')].rows[2].col4", + "$..[?(@.question=='2019-64.EC-01')].rows[2].col4" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col5": [ + { + "targets": [ + "$..[?(@.question=='2019-64.EC-04')].rows[2].col5", + "$..[?(@.question=='2019-64.EC-01')].rows[2].col5" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col6": [ + { + "targets": [ + "$..[?(@.question=='2019-64.EC-04')].rows[2].col6", + "$..[?(@.question=='2019-64.EC-01')].rows[2].col6" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ] + }, + { + "col1": "C. Primary Care Case Management", + "col2": [ + { + "targets": [ + "$..[?(@.question=='2019-64.EC-04')].rows[3].col2", + "$..[?(@.question=='2019-64.EC-01')].rows[3].col2" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col3": [ + { + "targets": [ + "$..[?(@.question=='2019-64.EC-04')].rows[3].col3", + "$..[?(@.question=='2019-64.EC-01')].rows[3].col3" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col4": [ + { + "targets": [ + "$..[?(@.question=='2019-64.EC-04')].rows[3].col4", + "$..[?(@.question=='2019-64.EC-01')].rows[3].col4" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col5": [ + { + "targets": [ + "$..[?(@.question=='2019-64.EC-04')].rows[3].col5", + "$..[?(@.question=='2019-64.EC-01')].rows[3].col5" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col6": [ + { + "targets": [ + "$..[?(@.question=='2019-64.EC-04')].rows[3].col6", + "$..[?(@.question=='2019-64.EC-01')].rows[3].col6" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ] + } + ], + "lastModified": "2019-01-15T12:46:35.838Z", + "lastModifiedBY": "seed", + "createdDate": "2019-01-15T12:46:35.838Z", + "createdBY": "seed" + }, + { + "question": "2019-64.EC-06", + "form": "64.EC", + "year": 2019, + "type": "datagridwithtotals", + "rowTotal": true, + "columnTotal": true, + "label": "What is the number of children &&&VARIABLE&&& enrolled at the end of the quarter?", + "age_ranges": [ + { "key": "0001", "label": "Birth through age 12 months" }, + { "key": "0105", "label": "Age 1 year through age 5 years" }, + { "key": "0612", "label": "Age 6 years through age 12 years" }, + { "key": "1318", "label": "Age 13 years through age 18 years" }, + { "key": "1920", "label": "Age 19 years through age 20 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "lastModified": "2019-01-15T12:46:35.838Z", + "lastModifiedBY": "seed", + "createdDate": "2019-01-15T12:46:35.838Z", + "createdBY": "seed" + }, + { + "question": "2019-64.EC-07", + "form": "64.EC", + "year": 2019, + "type": "datagridwithtotals", + "rowTotal": true, + "columnTotal": true, + "context_data": { + "show_if_quarter_in": ["4"] + }, + "label": "What is the unduplicated number of children &&&VARIABLE&&& ever enrolled during the year?", + "age_ranges": [ + { "key": "0001", "label": "Birth through age 12 months" }, + { "key": "0105", "label": "Age 1 year through age 5 years" }, + { "key": "0612", "label": "Age 6 years through age 12 years" }, + { "key": "1318", "label": "Age 13 years through age 18 years" }, + { "key": "1920", "label": "Age 19 years through age 20 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "lastModified": "2019-01-15T12:46:35.838Z", + "lastModifiedBY": "seed", + "createdDate": "2019-01-15T12:46:35.838Z", + "createdBY": "seed" + }, + { + "question": "2019-64.EC-08", + "form": "64.EC", + "year": 2019, + "type": "datagridwithtotals", + "rowTotal": true, + "columnTotal": true, + "context_data": { + "show_if_quarter_in": ["4"] + }, + "label": "What is the unduplicated number of new enrollees &&&VARIABLE&&& during the year?", + "age_ranges": [ + { "key": "0001", "label": "Birth through age 12 months" }, + { "key": "0105", "label": "Age 1 year through age 5 years" }, + { "key": "0612", "label": "Age 6 years through age 12 years" }, + { "key": "1318", "label": "Age 13 years through age 18 years" }, + { "key": "1920", "label": "Age 19 years through age 20 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "lastModified": "2019-01-15T12:46:35.838Z", + "lastModifiedBY": "seed", + "createdDate": "2019-01-15T12:46:35.838Z", + "createdBY": "seed" + }, + { + "question": "2019-64.EC-09", + "form": "64.EC", + "year": 2019, + "type": "datagridwithtotals", + "rowTotal": true, + "columnTotal": true, + "context_data": { + "show_if_quarter_in": ["4"] + }, + "label": "What is the unduplicated number of disenrollees &&&VARIABLE&&& during the year?", + "age_ranges": [ + { "key": "0001", "label": "Birth through age 12 months" }, + { "key": "0105", "label": "Age 1 year through age 5 years" }, + { "key": "0612", "label": "Age 6 years through age 12 years" }, + { "key": "1318", "label": "Age 13 years through age 18 years" }, + { "key": "1920", "label": "Age 19 years through age 20 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "lastModified": "2019-01-15T12:46:35.838Z", + "lastModifiedBY": "seed", + "createdDate": "2019-01-15T12:46:35.838Z", + "createdBY": "seed" + }, + { + "question": "2019-GRE-01", + "form_id": "5", + "form": "GRE", + "year": 2019, + "type": "gregridwithtotals", + "row_total": true, + "column_total": true, + "label": "What is the number of enrollees by gender?", + "age_ranges": [ + { "key": "0018", "label": "Conception through age 18 years" } + ], + "rows": [ + { + "col1": "", + "col2": "21E Enrolled", + "col3": "64.21E Enrolled", + "col4": "Total CHIP Enrolled", + "col5": "64.EC Enrolled", + "col6": "21PW Enrolled" + }, + { + "col1": "1. Female", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "2. Male", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "3. Unspecified Gender", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2019-10-01T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2019-10-01T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2019-GRE-02", + "form_id": "5", + "form": "GRE", + "year": 2019, + "type": "gregridwithtotals", + "row_total": true, + "column_total": true, + "label": "What is the number of enrollees by race?", + "age_ranges": [ + { "key": "0018", "label": "Conception through age 18 years" } + ], + "rows": [ + { + "col1": "", + "col2": "21E Enrolled", + "col3": "64.21E Enrolled", + "col4": "Total CHIP Enrolled", + "col5": "64.EC Enrolled", + "col6": "21PW Enrolled" + }, + { + "col1": "1. White", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "2. Black or African American", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "3. American Indian or Alaska Native", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "4. Asian Indian", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "5. Chinese", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "6. Filipino", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "7. Japanese", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "8. Korean", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "9. Vietnamese", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "10. Other Asian", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "11. Asian Unknown", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "12. Native Hawaiian", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "13. Guamanian or Chamorro", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "14. Samoan", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "15. Other Pacific Islander", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "16. Native Hawaiian or Other Pacific Islander Unknown", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "17. Some other race", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "18. Two or more races (regardless of ethnicity)", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "19. Unspecified Race", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2019-10-01T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2019-10-01T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2019-GRE-03", + "form_id": "5", + "form": "GRE", + "year": 2019, + "type": "gregridwithtotals", + "row_total": true, + "column_total": true, + "label": "What is the number of enrollees by ethnicity?", + "age_ranges": [ + { "key": "0018", "label": "Conception through age 18 years" } + ], + "rows": [ + { + "col1": "", + "col2": "21E Enrolled", + "col3": "64.21E Enrolled", + "col4": "Total CHIP Enrolled", + "col5": "64.EC Enrolled", + "col6": "21PW Enrolled" + }, + { + "col1": "1. Not of Hispanic, Latino/a, or Spanish origin", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "2. Mexican, Mexican American, Chicano/a", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "3. Puerto Rican", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "4. Cuban", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "5. Another Hispanic, Latino, or Spanish Origin", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "6. Hispanic or Latino Unknown", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "7. Unspecified Ethnicity", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2019-10-01T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2019-10-01T12:46:35.838Z", + "created_by": "seed" + } + ] + } +] diff --git a/services/database/data/initial_data_load/form_template_2020.json b/services/database/data/initial_data_load/form_template_2020.json new file mode 100644 index 000000000..ea6205253 --- /dev/null +++ b/services/database/data/initial_data_load/form_template_2020.json @@ -0,0 +1,2830 @@ +[ + { + "year": 2020, + "template": [ + { + "question": "2020-21E-01", + "form_id": "1", + "form": "21E", + "year": 2020, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "label": "What is the unduplicated number of children &&&VARIABLE&&& ever enrolled during the quarter?", + "age_ranges": [ + { "key": "0000", "label": "Under Age 0" }, + { "key": "0001", "label": "Ages 0 - 1" }, + { "key": "0105", "label": "Ages 1 - 5" }, + { "key": "0612", "label": "Ages 6 - 12" }, + { "key": "1318", "label": "Ages 13 - 18" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2020-01-15T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2020-01-15T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2020-21E-02", + "form_id": "1", + "form": "21E", + "year": 2020, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "label": "What is the unduplicated number of new enrollees &&&VARIABLE&&& in the quarter?", + "age_ranges": [ + { "key": "0000", "label": "Under Age 0" }, + { "key": "0001", "label": "Ages 0 - 1" }, + { "key": "0105", "label": "Ages 1 - 5" }, + { "key": "0612", "label": "Ages 6 - 12" }, + { "key": "1318", "label": "Ages 13 - 18" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2020-01-15T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2020-01-15T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2020-21E-03", + "form_id": "1", + "form": "21E", + "year": 2020, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "label": "What is the unduplicated number of disenrollees &&&VARIABLE&&& in the quarter?", + "age_ranges": [ + { "key": "0000", "label": "Under Age 0" }, + { "key": "0001", "label": "Ages 0 - 1" }, + { "key": "0105", "label": "Ages 1 - 5" }, + { "key": "0612", "label": "Ages 6 - 12" }, + { "key": "1318", "label": "Ages 13 - 18" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2020-01-15T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2020-01-15T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2020-21E-04", + "form_id": "1", + "form": "21E", + "year": 2020, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "label": "What is the number of member-months of enrollment for children &&&VARIABLE&&& in the quarter?", + "age_ranges": [ + { "key": "0000", "label": "Under Age 0" }, + { "key": "0001", "label": "Ages 0 - 1" }, + { "key": "0105", "label": "Ages 1 - 5" }, + { "key": "0612", "label": "Ages 6 - 12" }, + { "key": "1318", "label": "Ages 13 - 18" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2020-01-15T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2020-01-15T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2020-21E-05", + "form_id": "1", + "form": "21E", + "year": 2020, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "label": "What is the average number of months of enrollment for children &&&VARIABLE&&& ever enrolled during the quarter?", + "readonly": true, + "comment": "Divide the entries in Question 4 by the entries in Question 1.", + "age_ranges": [ + { "key": "0000", "label": "Under Age 0" }, + { "key": "0001", "label": "Ages 0 - 1" }, + { "key": "0105", "label": "Ages 1 - 5" }, + { "key": "0612", "label": "Ages 6 - 12" }, + { "key": "1318", "label": "Ages 13 - 18" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": [ + { + "targets": [ + "$..[?(@.question=='2020-21E-04')].rows[1].col2", + "$..[?(@.question=='2020-21E-01')].rows[1].col2" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col3": [ + { + "targets": [ + "$..[?(@.question=='2020-21E-04')].rows[1].col3", + "$..[?(@.question=='2020-21E-01')].rows[1].col3" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col4": [ + { + "targets": [ + "$..[?(@.question=='2020-21E-04')].rows[1].col4", + "$..[?(@.question=='2020-21E-01')].rows[1].col4" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col5": [ + { + "targets": [ + "$..[?(@.question=='2020-21E-04')].rows[1].col5", + "$..[?(@.question=='2020-21E-01')].rows[1].col5" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col6": [ + { + "targets": [ + "$..[?(@.question=='2020-21E-04')].rows[1].col6", + "$..[?(@.question=='2020-21E-01')].rows[1].col6" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ] + }, + { + "col1": "B. Managed Care Arrangements", + "col2": [ + { + "targets": [ + "$..[?(@.question=='2020-21E-04')].rows[2].col2", + "$..[?(@.question=='2020-21E-01')].rows[2].col2" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col3": [ + { + "targets": [ + "$..[?(@.question=='2020-21E-04')].rows[2].col3", + "$..[?(@.question=='2020-21E-01')].rows[2].col3" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col4": [ + { + "targets": [ + "$..[?(@.question=='2020-21E-04')].rows[2].col4", + "$..[?(@.question=='2020-21E-01')].rows[2].col4" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col5": [ + { + "targets": [ + "$..[?(@.question=='2020-21E-04')].rows[2].col5", + "$..[?(@.question=='2020-21E-01')].rows[2].col5" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col6": [ + { + "targets": [ + "$..[?(@.question=='2020-21E-04')].rows[2].col6", + "$..[?(@.question=='2020-21E-01')].rows[2].col6" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ] + }, + { + "col1": "C. Primary Care Case Management", + "col2": [ + { + "targets": [ + "$..[?(@.question=='2020-21E-04')].rows[3].col2", + "$..[?(@.question=='2020-21E-01')].rows[3].col2" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col3": [ + { + "targets": [ + "$..[?(@.question=='2020-21E-04')].rows[3].col3", + "$..[?(@.question=='2020-21E-01')].rows[3].col3" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col4": [ + { + "targets": [ + "$..[?(@.question=='2020-21E-04')].rows[3].col4", + "$..[?(@.question=='2020-21E-01')].rows[3].col4" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col5": [ + { + "targets": [ + "$..[?(@.question=='2020-21E-04')].rows[3].col5", + "$..[?(@.question=='2020-21E-01')].rows[3].col5" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col6": [ + { + "targets": [ + "$..[?(@.question=='2020-21E-04')].rows[3].col6", + "$..[?(@.question=='2020-21E-01')].rows[3].col6" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ] + } + ], + "last_modified": "2020-01-15T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2020-01-15T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2020-21E-06", + "form_id": "1", + "form": "21E", + "year": 2020, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "label": "What is the number of children &&&VARIABLE&&& enrolled at the end of the quarter?", + "age_ranges": [ + { "key": "0000", "label": "Under Age 0" }, + { "key": "0001", "label": "Ages 0 - 1" }, + { "key": "0105", "label": "Ages 1 - 5" }, + { "key": "0612", "label": "Ages 6 - 12" }, + { "key": "1318", "label": "Ages 13 - 18" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2020-01-15T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2020-01-15T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2020-21E-07", + "form_id": "1", + "form": "21E", + "year": 2020, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "context_data": { + "show_if_quarter_in": ["4"] + }, + "label": "What is the unduplicated number of children &&&VARIABLE&&& ever enrolled during the year?", + "age_ranges": [ + { "key": "0000", "label": "Under Age 0" }, + { "key": "0001", "label": "Ages 0 - 1" }, + { "key": "0105", "label": "Ages 1 - 5" }, + { "key": "0612", "label": "Ages 6 - 12" }, + { "key": "1318", "label": "Ages 13 - 18" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2020-01-15T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2020-01-15T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2020-21E-08", + "form_id": "1", + "form": "21E", + "year": 2020, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "context_data": { + "show_if_quarter_in": ["4"] + }, + "label": "What is the unduplicated number of new enrollees &&&VARIABLE&&& during the year?", + "age_ranges": [ + { "key": "0000", "label": "Under Age 0" }, + { "key": "0001", "label": "Ages 0 - 1" }, + { "key": "0105", "label": "Ages 1 - 5" }, + { "key": "0612", "label": "Ages 6 - 12" }, + { "key": "1318", "label": "Ages 13 - 18" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2020-01-15T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2020-01-15T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2020-21E-09", + "form_id": "1", + "form": "21E", + "year": 2020, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "context_data": { + "show_if_quarter_in": ["4"] + }, + "label": "What is the unduplicated number of disenrollees &&&VARIABLE&&& during the year?", + "age_ranges": [ + { "key": "0000", "label": "Under Age 0" }, + { "key": "0001", "label": "Ages 0 - 1" }, + { "key": "0105", "label": "Ages 1 - 5" }, + { "key": "0612", "label": "Ages 6 - 12" }, + { "key": "1318", "label": "Ages 13 - 18" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2020-01-15T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2020-01-15T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2020-21PW-01", + "form_id": "6", + "form": "21PW", + "year": 2020, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "label": "What is the unduplicated number of pregnant women ever enrolled during the quarter?", + "age_ranges": [ + { "key": "1964", "label": "Age 19 years through age 64 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2020-10-01T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2020-10-01T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2020-21PW-02", + "form_id": "6", + "form": "21PW", + "year": 2020, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "label": "What is the unduplicated number of new enrollees in the quarter?", + "age_ranges": [ + { "key": "1964", "label": "Age 19 years through age 64 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2020-10-01T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2020-10-01T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2020-21PW-03", + "form_id": "6", + "form": "21PW", + "year": 2020, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "label": "What is the unduplicated number of disenrollees in the quarter?", + "age_ranges": [ + { "key": "1964", "label": "Age 19 years through age 64 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2020-10-01T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2020-10-01T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2020-21PW-04", + "form_id": "6", + "form": "21PW", + "year": 2020, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "label": "What is the number of member-months of enrollment for pregnant women in the quarter?", + "age_ranges": [ + { "key": "1964", "label": "Age 19 years through age 64 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2020-10-01T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2020-10-01T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2020-21PW-05", + "form_id": "6", + "form": "21PW", + "year": 2020, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "label": "What is the average number of months of enrollment for pregnant women ever enrolled during the quarter?", + "readonly": true, + "comment": "Divide the entries in Question 4 by the entries in Question 1.", + "age_ranges": [ + { "key": "1964", "label": "Age 19 years through age 64 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301" + }, + { + "col1": "A. Fee-for-Service", + "col2": [ + { + "targets": [ + "$..[?(@.question=='2020-21PW-04')].rows[1].col2", + "$..[?(@.question=='2020-21PW-01')].rows[1].col2" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col3": [ + { + "targets": [ + "$..[?(@.question=='2020-21PW-04')].rows[1].col3", + "$..[?(@.question=='2020-21PW-01')].rows[1].col3" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col4": [ + { + "targets": [ + "$..[?(@.question=='2020-21PW-04')].rows[1].col4", + "$..[?(@.question=='2020-21PW-01')].rows[1].col4" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col5": [ + { + "targets": [ + "$..[?(@.question=='2020-21PW-04')].rows[1].col5", + "$..[?(@.question=='2020-21PW-01')].rows[1].col5" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col6": [ + { + "targets": [ + "$..[?(@.question=='2020-21PW-04')].rows[1].col6", + "$..[?(@.question=='2020-21PW-01')].rows[1].col6" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ] + }, + { + "col1": "B. Managed Care Arrangements", + "col2": [ + { + "targets": [ + "$..[?(@.question=='2020-21PW-04')].rows[2].col2", + "$..[?(@.question=='2020-21PW-01')].rows[2].col2" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col3": [ + { + "targets": [ + "$..[?(@.question=='2020-21PW-04')].rows[2].col3", + "$..[?(@.question=='2020-21PW-01')].rows[2].col3" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col4": [ + { + "targets": [ + "$..[?(@.question=='2020-21PW-04')].rows[2].col4", + "$..[?(@.question=='2020-21PW-01')].rows[2].col4" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col5": [ + { + "targets": [ + "$..[?(@.question=='2020-21PW-04')].rows[2].col5", + "$..[?(@.question=='2020-21PW-01')].rows[2].col5" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col6": [ + { + "targets": [ + "$..[?(@.question=='2020-21PW-04')].rows[2].col6", + "$..[?(@.question=='2020-21PW-01')].rows[2].col6" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ] + }, + { + "col1": "C. Primary Care Case Management", + "col2": [ + { + "targets": [ + "$..[?(@.question=='2020-21PW-04')].rows[3].col2", + "$..[?(@.question=='2020-21PW-01')].rows[3].col2" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col3": [ + { + "targets": [ + "$..[?(@.question=='2020-21PW-04')].rows[3].col3", + "$..[?(@.question=='2020-21PW-01')].rows[3].col3" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col4": [ + { + "targets": [ + "$..[?(@.question=='2020-21PW-04')].rows[3].col4", + "$..[?(@.question=='2020-21PW-01')].rows[3].col4" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col5": [ + { + "targets": [ + "$..[?(@.question=='2020-21PW-04')].rows[3].col5", + "$..[?(@.question=='2020-21PW-01')].rows[3].col5" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col6": [ + { + "targets": [ + "$..[?(@.question=='2020-21PW-04')].rows[3].col6", + "$..[?(@.question=='2020-21PW-01')].rows[3].col6" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ] + } + ], + "last_modified": "2020-10-01T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2020-10-01T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2020-21PW-06", + "form_id": "6", + "form": "21PW", + "year": 2020, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "label": "What is the number of pregnant women enrolled at the end of the quarter?", + "age_ranges": [ + { "key": "1964", "label": "Age 19 years through age 64 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2020-10-01T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2020-10-01T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2020-21PW-07", + "form_id": "6", + "form": "21PW", + "year": 2020, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "context_data": { + "show_if_quarter_in": ["4"] + }, + "label": "What is the unduplicated number of pregnant women ever enrolled during the year?", + "age_ranges": [ + { "key": "1964", "label": "Age 19 years through age 64 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2020-10-01T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2020-10-01T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2020-21PW-08", + "form_id": "6", + "form": "21PW", + "year": 2020, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "context_data": { + "show_if_quarter_in": ["4"] + }, + "label": "What is the unduplicated number of new enrollees during the year?", + "age_ranges": [ + { "key": "1964", "label": "Age 19 years through age 64 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2020-10-01T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2020-10-01T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2020-21PW-09", + "form_id": "6", + "form": "21PW", + "year": 2020, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "context_data": { + "show_if_quarter_in": ["4"] + }, + "label": "What is the unduplicated number of disenrollees during the year?", + "age_ranges": [ + { "key": "1964", "label": "Age 19 years through age 64 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2020-10-01T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2020-10-01T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2020-64.21E-01", + "form_id": "3", + "form": "64.21E", + "year": 2020, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "label": "What is the unduplicated number of children &&&VARIABLE&&& ever enrolled during the quarter?", + "age_ranges": [ + { "key": "0001", "label": "Birth through age 12 months" }, + { "key": "0105", "label": "Age 1 year through age 5 years" }, + { "key": "0612", "label": "Age 6 years through age 12 years" }, + { "key": "1318", "label": "Age 13 years through age 18 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2020-01-15T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2020-01-15T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2020-64.21E-02", + "form_id": "3", + "form": "64.21E", + "year": 2020, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "label": "What is the unduplicated number of new enrollees &&&VARIABLE&&& in the quarter?", + "age_ranges": [ + { "key": "0001", "label": "Birth through age 12 months" }, + { "key": "0105", "label": "Age 1 year through age 5 years" }, + { "key": "0612", "label": "Age 6 years through age 12 years" }, + { "key": "1318", "label": "Age 13 years through age 18 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2020-01-15T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2020-01-15T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2020-64.21E-03", + "form_id": "3", + "form": "64.21E", + "year": 2020, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "label": "What is the unduplicated number of disenrollees &&&VARIABLE&&& in the quarter?", + "age_ranges": [ + { "key": "0001", "label": "Birth through age 12 months" }, + { "key": "0105", "label": "Age 1 year through age 5 years" }, + { "key": "0612", "label": "Age 6 years through age 12 years" }, + { "key": "1318", "label": "Age 13 years through age 18 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2020-01-15T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2020-01-15T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2020-64.21E-04", + "form_id": "3", + "form": "64.21E", + "year": 2020, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "label": "What is the number of member-months of enrollment for children &&&VARIABLE&&& in the quarter?", + "age_ranges": [ + { "key": "0001", "label": "Birth through age 12 months" }, + { "key": "0105", "label": "Age 1 year through age 5 years" }, + { "key": "0612", "label": "Age 6 years through age 12 years" }, + { "key": "1318", "label": "Age 13 years through age 18 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2020-01-15T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2020-01-15T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2020-64.21E-05", + "form_id": "3", + "form": "64.21E", + "year": 2020, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "label": "What is the average number of months of enrollment for children &&&VARIABLE&&& ever enrolled during the quarter?", + "readonly": true, + "comment": "Divide the entries in Question 4 by the entries in Question 1.", + "age_ranges": [ + { "key": "0001", "label": "Birth through age 12 months" }, + { "key": "0105", "label": "Age 1 year through age 5 years" }, + { "key": "0612", "label": "Age 6 years through age 12 years" }, + { "key": "1318", "label": "Age 13 years through age 18 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": [ + { + "targets": [ + "$..[?(@.question=='2020-64.21E-04')].rows[1].col2", + "$..[?(@.question=='2020-64.21E-01')].rows[1].col2" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col3": [ + { + "targets": [ + "$..[?(@.question=='2020-64.21E-04')].rows[1].col3", + "$..[?(@.question=='2020-64.21E-01')].rows[1].col3" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col4": [ + { + "targets": [ + "$..[?(@.question=='2020-64.21E-04')].rows[1].col4", + "$..[?(@.question=='2020-64.21E-01')].rows[1].col4" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col5": [ + { + "targets": [ + "$..[?(@.question=='2020-64.21E-04')].rows[1].col5", + "$..[?(@.question=='2020-64.21E-01')].rows[1].col5" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col6": [ + { + "targets": [ + "$..[?(@.question=='2020-64.21E-04')].rows[1].col6", + "$..[?(@.question=='2020-64.21E-01')].rows[1].col6" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ] + }, + { + "col1": "B. Managed Care Arrangements", + "col2": [ + { + "targets": [ + "$..[?(@.question=='2020-64.21E-04')].rows[2].col2", + "$..[?(@.question=='2020-64.21E-01')].rows[2].col2" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col3": [ + { + "targets": [ + "$..[?(@.question=='2020-64.21E-04')].rows[2].col3", + "$..[?(@.question=='2020-64.21E-01')].rows[2].col3" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col4": [ + { + "targets": [ + "$..[?(@.question=='2020-64.21E-04')].rows[2].col4", + "$..[?(@.question=='2020-64.21E-01')].rows[2].col4" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col5": [ + { + "targets": [ + "$..[?(@.question=='2020-64.21E-04')].rows[2].col5", + "$..[?(@.question=='2020-64.21E-01')].rows[2].col5" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col6": [ + { + "targets": [ + "$..[?(@.question=='2020-64.21E-04')].rows[2].col6", + "$..[?(@.question=='2020-64.21E-01')].rows[2].col6" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ] + }, + { + "col1": "C. Primary Care Case Management", + "col2": [ + { + "targets": [ + "$..[?(@.question=='2020-64.21E-04')].rows[3].col2", + "$..[?(@.question=='2020-64.21E-01')].rows[3].col2" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col3": [ + { + "targets": [ + "$..[?(@.question=='2020-64.21E-04')].rows[3].col3", + "$..[?(@.question=='2020-64.21E-01')].rows[3].col3" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col4": [ + { + "targets": [ + "$..[?(@.question=='2020-64.21E-04')].rows[3].col4", + "$..[?(@.question=='2020-64.21E-01')].rows[3].col4" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col5": [ + { + "targets": [ + "$..[?(@.question=='2020-64.21E-04')].rows[3].col5", + "$..[?(@.question=='2020-64.21E-01')].rows[3].col5" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col6": [ + { + "targets": [ + "$..[?(@.question=='2020-64.21E-04')].rows[3].col6", + "$..[?(@.question=='2020-64.21E-01')].rows[3].col6" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ] + } + ], + "last_modified": "2020-01-15T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2020-01-15T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2020-64.21E-06", + "form_id": "3", + "form": "64.21E", + "year": 2020, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "label": "What is the number of children &&&VARIABLE&&& enrolled at the end of the quarter?", + "age_ranges": [ + { "key": "0001", "label": "Birth through age 12 months" }, + { "key": "0105", "label": "Age 1 year through age 5 years" }, + { "key": "0612", "label": "Age 6 years through age 12 years" }, + { "key": "1318", "label": "Age 13 years through age 18 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2020-01-15T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2020-01-15T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2020-64.21E-07", + "form_id": "3", + "form": "64.21E", + "year": 2020, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "context_data": { + "show_if_quarter_in": ["4"] + }, + "label": "What is the unduplicated number of children &&&VARIABLE&&& ever enrolled during the year?", + "age_ranges": [ + { "key": "0001", "label": "Birth through age 12 months" }, + { "key": "0105", "label": "Age 1 year through age 5 years" }, + { "key": "0612", "label": "Age 6 years through age 12 years" }, + { "key": "1318", "label": "Age 13 years through age 18 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2020-01-15T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2020-01-15T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2020-64.21E-08", + "form_id": "3", + "form": "64.21E", + "year": 2020, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "context_data": { + "show_if_quarter_in": ["4"] + }, + "label": "What is the unduplicated number of new enrollees &&&VARIABLE&&& during the year?", + "age_ranges": [ + { "key": "0001", "label": "Birth through age 12 months" }, + { "key": "0105", "label": "Age 1 year through age 5 years" }, + { "key": "0612", "label": "Age 6 years through age 12 years" }, + { "key": "1318", "label": "Age 13 years through age 18 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2020-01-15T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2020-01-15T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2020-64.21E-09", + "form_id": "3", + "form": "64.21E", + "year": 2020, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "context_data": { + "show_if_quarter_in": ["4"] + }, + "label": "What is the unduplicated number of disenrollees &&&VARIABLE&&& during the year?", + "age_ranges": [ + { "key": "0001", "label": "Birth through age 12 months" }, + { "key": "0105", "label": "Age 1 year through age 5 years" }, + { "key": "0612", "label": "Age 6 years through age 12 years" }, + { "key": "1318", "label": "Age 13 years through age 18 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2020-01-15T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2020-01-15T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2020-64.EC-01", + "form": "64.EC", + "year": 2020, + "type": "datagridwithtotals", + "rowTotal": true, + "columnTotal": true, + "label": "What is the unduplicated number of children &&&VARIABLE&&& ever enrolled during the quarter?", + "age_ranges": [ + { "key": "0001", "label": "Birth through age 12 months" }, + { "key": "0105", "label": "Age 1 year through age 5 years" }, + { "key": "0612", "label": "Age 6 years through age 12 years" }, + { "key": "1318", "label": "Age 13 years through age 18 years" }, + { "key": "1920", "label": "Age 19 years through age 20 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "lastModified": "2020-01-15T12:46:35.838Z", + "lastModifiedBY": "seed", + "createdDate": "2020-01-15T12:46:35.838Z", + "createdBY": "seed" + }, + { + "question": "2020-64.EC-02", + "form": "64.EC", + "year": 2020, + "type": "datagridwithtotals", + "rowTotal": true, + "columnTotal": true, + "label": "What is the unduplicated number of new enrollees &&&VARIABLE&&& in the quarter?", + "age_ranges": [ + { "key": "0001", "label": "Birth through age 12 months" }, + { "key": "0105", "label": "Age 1 year through age 5 years" }, + { "key": "0612", "label": "Age 6 years through age 12 years" }, + { "key": "1318", "label": "Age 13 years through age 18 years" }, + { "key": "1920", "label": "Age 19 years through age 20 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "lastModified": "2020-01-15T12:46:35.838Z", + "lastModifiedBY": "seed", + "createdDate": "2020-01-15T12:46:35.838Z", + "createdBY": "seed" + }, + { + "question": "2020-64.EC-03", + "form": "64.EC", + "year": 2020, + "type": "datagridwithtotals", + "rowTotal": true, + "columnTotal": true, + "label": "What is the unduplicated number of disenrollees &&&VARIABLE&&& in the quarter?", + "age_ranges": [ + { "key": "0001", "label": "Birth through age 12 months" }, + { "key": "0105", "label": "Age 1 year through age 5 years" }, + { "key": "0612", "label": "Age 6 years through age 12 years" }, + { "key": "1318", "label": "Age 13 years through age 18 years" }, + { "key": "1920", "label": "Age 19 years through age 20 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "lastModified": "2020-01-15T12:46:35.838Z", + "lastModifiedBY": "seed", + "createdDate": "2020-01-15T12:46:35.838Z", + "createdBY": "seed" + }, + { + "question": "2020-64.EC-04", + "form": "64.EC", + "year": 2020, + "type": "datagridwithtotals", + "rowTotal": true, + "columnTotal": true, + "label": "What is the number of member-months of enrollment for children &&&VARIABLE&&& in the quarter?", + "age_ranges": [ + { "key": "0001", "label": "Birth through age 12 months" }, + { "key": "0105", "label": "Age 1 year through age 5 years" }, + { "key": "0612", "label": "Age 6 years through age 12 years" }, + { "key": "1318", "label": "Age 13 years through age 18 years" }, + { "key": "1920", "label": "Age 19 years through age 20 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "lastModified": "2020-01-15T12:46:35.838Z", + "lastModifiedBY": "seed", + "createdDate": "2020-01-15T12:46:35.838Z", + "createdBY": "seed" + }, + { + "question": "2020-64.EC-05", + "form": "64.EC", + "year": 2020, + "type": "datagridwithtotals", + "rowTotal": true, + "columnTotal": true, + "label": "What is the average number of months of enrollment for children &&&VARIABLE&&& ever enrolled during the quarter?", + "readonly": true, + "comment": "Divide the entries in Question 4 by the entries in Question 1.", + "age_ranges": [ + { "key": "0001", "label": "Birth through age 12 months" }, + { "key": "0105", "label": "Age 1 year through age 5 years" }, + { "key": "0612", "label": "Age 6 years through age 12 years" }, + { "key": "1318", "label": "Age 13 years through age 18 years" }, + { "key": "1920", "label": "Age 19 years through age 20 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": [ + { + "targets": [ + "$..[?(@.question=='2020-64.EC-04')].rows[1].col2", + "$..[?(@.question=='2020-64.EC-01')].rows[1].col2" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col3": [ + { + "targets": [ + "$..[?(@.question=='2020-64.EC-04')].rows[1].col3", + "$..[?(@.question=='2020-64.EC-01')].rows[1].col3" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col4": [ + { + "targets": [ + "$..[?(@.question=='2020-64.EC-04')].rows[1].col4", + "$..[?(@.question=='2020-64.EC-01')].rows[1].col4" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col5": [ + { + "targets": [ + "$..[?(@.question=='2020-64.EC-04')].rows[1].col5", + "$..[?(@.question=='2020-64.EC-01')].rows[1].col5" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col6": [ + { + "targets": [ + "$..[?(@.question=='2020-64.EC-04')].rows[1].col6", + "$..[?(@.question=='2020-64.EC-01')].rows[1].col6" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ] + }, + { + "col1": "B. Managed Care Arrangements", + "col2": [ + { + "targets": [ + "$..[?(@.question=='2020-64.EC-04')].rows[2].col2", + "$..[?(@.question=='2020-64.EC-01')].rows[2].col2" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col3": [ + { + "targets": [ + "$..[?(@.question=='2020-64.EC-04')].rows[2].col3", + "$..[?(@.question=='2020-64.EC-01')].rows[2].col3" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col4": [ + { + "targets": [ + "$..[?(@.question=='2020-64.EC-04')].rows[2].col4", + "$..[?(@.question=='2020-64.EC-01')].rows[2].col4" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col5": [ + { + "targets": [ + "$..[?(@.question=='2020-64.EC-04')].rows[2].col5", + "$..[?(@.question=='2020-64.EC-01')].rows[2].col5" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col6": [ + { + "targets": [ + "$..[?(@.question=='2020-64.EC-04')].rows[2].col6", + "$..[?(@.question=='2020-64.EC-01')].rows[2].col6" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ] + }, + { + "col1": "C. Primary Care Case Management", + "col2": [ + { + "targets": [ + "$..[?(@.question=='2020-64.EC-04')].rows[3].col2", + "$..[?(@.question=='2020-64.EC-01')].rows[3].col2" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col3": [ + { + "targets": [ + "$..[?(@.question=='2020-64.EC-04')].rows[3].col3", + "$..[?(@.question=='2020-64.EC-01')].rows[3].col3" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col4": [ + { + "targets": [ + "$..[?(@.question=='2020-64.EC-04')].rows[3].col4", + "$..[?(@.question=='2020-64.EC-01')].rows[3].col4" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col5": [ + { + "targets": [ + "$..[?(@.question=='2020-64.EC-04')].rows[3].col5", + "$..[?(@.question=='2020-64.EC-01')].rows[3].col5" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col6": [ + { + "targets": [ + "$..[?(@.question=='2020-64.EC-04')].rows[3].col6", + "$..[?(@.question=='2020-64.EC-01')].rows[3].col6" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ] + } + ], + "lastModified": "2020-01-15T12:46:35.838Z", + "lastModifiedBY": "seed", + "createdDate": "2020-01-15T12:46:35.838Z", + "createdBY": "seed" + }, + { + "question": "2020-64.EC-06", + "form": "64.EC", + "year": 2020, + "type": "datagridwithtotals", + "rowTotal": true, + "columnTotal": true, + "label": "What is the number of children &&&VARIABLE&&& enrolled at the end of the quarter?", + "age_ranges": [ + { "key": "0001", "label": "Birth through age 12 months" }, + { "key": "0105", "label": "Age 1 year through age 5 years" }, + { "key": "0612", "label": "Age 6 years through age 12 years" }, + { "key": "1318", "label": "Age 13 years through age 18 years" }, + { "key": "1920", "label": "Age 19 years through age 20 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "lastModified": "2020-01-15T12:46:35.838Z", + "lastModifiedBY": "seed", + "createdDate": "2020-01-15T12:46:35.838Z", + "createdBY": "seed" + }, + { + "question": "2020-64.EC-07", + "form": "64.EC", + "year": 2020, + "type": "datagridwithtotals", + "rowTotal": true, + "columnTotal": true, + "context_data": { + "show_if_quarter_in": ["4"] + }, + "label": "What is the unduplicated number of children &&&VARIABLE&&& ever enrolled during the year?", + "age_ranges": [ + { "key": "0001", "label": "Birth through age 12 months" }, + { "key": "0105", "label": "Age 1 year through age 5 years" }, + { "key": "0612", "label": "Age 6 years through age 12 years" }, + { "key": "1318", "label": "Age 13 years through age 18 years" }, + { "key": "1920", "label": "Age 19 years through age 20 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "lastModified": "2020-01-15T12:46:35.838Z", + "lastModifiedBY": "seed", + "createdDate": "2020-01-15T12:46:35.838Z", + "createdBY": "seed" + }, + { + "question": "2020-64.EC-08", + "form": "64.EC", + "year": 2020, + "type": "datagridwithtotals", + "rowTotal": true, + "columnTotal": true, + "context_data": { + "show_if_quarter_in": ["4"] + }, + "label": "What is the unduplicated number of new enrollees &&&VARIABLE&&& during the year?", + "age_ranges": [ + { "key": "0001", "label": "Birth through age 12 months" }, + { "key": "0105", "label": "Age 1 year through age 5 years" }, + { "key": "0612", "label": "Age 6 years through age 12 years" }, + { "key": "1318", "label": "Age 13 years through age 18 years" }, + { "key": "1920", "label": "Age 19 years through age 20 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "lastModified": "2020-01-15T12:46:35.838Z", + "lastModifiedBY": "seed", + "createdDate": "2020-01-15T12:46:35.838Z", + "createdBY": "seed" + }, + { + "question": "2020-64.EC-09", + "form": "64.EC", + "year": 2020, + "type": "datagridwithtotals", + "rowTotal": true, + "columnTotal": true, + "context_data": { + "show_if_quarter_in": ["4"] + }, + "label": "What is the unduplicated number of disenrollees &&&VARIABLE&&& during the year?", + "age_ranges": [ + { "key": "0001", "label": "Birth through age 12 months" }, + { "key": "0105", "label": "Age 1 year through age 5 years" }, + { "key": "0612", "label": "Age 6 years through age 12 years" }, + { "key": "1318", "label": "Age 13 years through age 18 years" }, + { "key": "1920", "label": "Age 19 years through age 20 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "lastModified": "2020-01-15T12:46:35.838Z", + "lastModifiedBY": "seed", + "createdDate": "2020-01-15T12:46:35.838Z", + "createdBY": "seed" + }, + { + "question": "2020-GRE-01", + "form_id": "5", + "form": "GRE", + "year": 2020, + "type": "gregridwithtotals", + "row_total": true, + "column_total": true, + "label": "What is the number of enrollees by gender?", + "age_ranges": [ + { "key": "0018", "label": "Conception through age 18 years" } + ], + "rows": [ + { + "col1": "", + "col2": "21E Enrolled", + "col3": "64.21E Enrolled", + "col4": "Total CHIP Enrolled", + "col5": "64.EC Enrolled", + "col6": "21PW Enrolled" + }, + { + "col1": "1. Female", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "2. Male", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "3. Unspecified Gender", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2020-10-01T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2020-10-01T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2020-GRE-02", + "form_id": "5", + "form": "GRE", + "year": 2020, + "type": "gregridwithtotals", + "row_total": true, + "column_total": true, + "label": "What is the number of enrollees by race?", + "age_ranges": [ + { "key": "0018", "label": "Conception through age 18 years" } + ], + "rows": [ + { + "col1": "", + "col2": "21E Enrolled", + "col3": "64.21E Enrolled", + "col4": "Total CHIP Enrolled", + "col5": "64.EC Enrolled", + "col6": "21PW Enrolled" + }, + { + "col1": "1. White", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "2. Black or African American", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "3. American Indian or Alaska Native", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "4. Asian Indian", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "5. Chinese", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "6. Filipino", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "7. Japanese", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "8. Korean", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "9. Vietnamese", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "10. Other Asian", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "11. Asian Unknown", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "12. Native Hawaiian", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "13. Guamanian or Chamorro", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "14. Samoan", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "15. Other Pacific Islander", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "16. Native Hawaiian or Other Pacific Islander Unknown", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "17. Some other race", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "18. Two or more races (regardless of ethnicity)", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "19. Unspecified Race", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2020-10-01T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2020-10-01T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2020-GRE-03", + "form_id": "5", + "form": "GRE", + "year": 2020, + "type": "gregridwithtotals", + "row_total": true, + "column_total": true, + "label": "What is the number of enrollees by ethnicity?", + "age_ranges": [ + { "key": "0018", "label": "Conception through age 18 years" } + ], + "rows": [ + { + "col1": "", + "col2": "21E Enrolled", + "col3": "64.21E Enrolled", + "col4": "Total CHIP Enrolled", + "col5": "64.EC Enrolled", + "col6": "21PW Enrolled" + }, + { + "col1": "1. Not of Hispanic, Latino/a, or Spanish origin", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "2. Mexican, Mexican American, Chicano/a", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "3. Puerto Rican", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "4. Cuban", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "5. Another Hispanic, Latino, or Spanish Origin", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "6. Hispanic or Latino Unknown", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "7. Unspecified Ethnicity", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2020-10-01T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2020-10-01T12:46:35.838Z", + "created_by": "seed" + } + ] + } +] diff --git a/services/database/data/initial_data_load/form_template_2021.json b/services/database/data/initial_data_load/form_template_2021.json new file mode 100644 index 000000000..ce8f6fc32 --- /dev/null +++ b/services/database/data/initial_data_load/form_template_2021.json @@ -0,0 +1,2830 @@ +[ + { + "year": 2021, + "template": [ + { + "question": "2021-21E-01", + "form_id": "1", + "form": "21E", + "year": 2021, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "label": "What is the unduplicated number of children &&&VARIABLE&&& ever enrolled during the quarter?", + "age_ranges": [ + { "key": "0000", "label": "Under Age 0" }, + { "key": "0001", "label": "Ages 0 - 1" }, + { "key": "0105", "label": "Ages 1 - 5" }, + { "key": "0612", "label": "Ages 6 - 12" }, + { "key": "1318", "label": "Ages 13 - 18" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2021-01-15T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2021-01-15T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2021-21E-02", + "form_id": "1", + "form": "21E", + "year": 2021, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "label": "What is the unduplicated number of new enrollees &&&VARIABLE&&& in the quarter?", + "age_ranges": [ + { "key": "0000", "label": "Under Age 0" }, + { "key": "0001", "label": "Ages 0 - 1" }, + { "key": "0105", "label": "Ages 1 - 5" }, + { "key": "0612", "label": "Ages 6 - 12" }, + { "key": "1318", "label": "Ages 13 - 18" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2021-01-15T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2021-01-15T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2021-21E-03", + "form_id": "1", + "form": "21E", + "year": 2021, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "label": "What is the unduplicated number of disenrollees &&&VARIABLE&&& in the quarter?", + "age_ranges": [ + { "key": "0000", "label": "Under Age 0" }, + { "key": "0001", "label": "Ages 0 - 1" }, + { "key": "0105", "label": "Ages 1 - 5" }, + { "key": "0612", "label": "Ages 6 - 12" }, + { "key": "1318", "label": "Ages 13 - 18" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2021-01-15T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2021-01-15T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2021-21E-04", + "form_id": "1", + "form": "21E", + "year": 2021, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "label": "What is the number of member-months of enrollment for children &&&VARIABLE&&& in the quarter?", + "age_ranges": [ + { "key": "0000", "label": "Under Age 0" }, + { "key": "0001", "label": "Ages 0 - 1" }, + { "key": "0105", "label": "Ages 1 - 5" }, + { "key": "0612", "label": "Ages 6 - 12" }, + { "key": "1318", "label": "Ages 13 - 18" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2021-01-15T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2021-01-15T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2021-21E-05", + "form_id": "1", + "form": "21E", + "year": 2021, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "label": "What is the average number of months of enrollment for children &&&VARIABLE&&& ever enrolled during the quarter?", + "readonly": true, + "comment": "Divide the entries in Question 4 by the entries in Question 1.", + "age_ranges": [ + { "key": "0000", "label": "Under Age 0" }, + { "key": "0001", "label": "Ages 0 - 1" }, + { "key": "0105", "label": "Ages 1 - 5" }, + { "key": "0612", "label": "Ages 6 - 12" }, + { "key": "1318", "label": "Ages 13 - 18" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": [ + { + "targets": [ + "$..[?(@.question=='2021-21E-04')].rows[1].col2", + "$..[?(@.question=='2021-21E-01')].rows[1].col2" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col3": [ + { + "targets": [ + "$..[?(@.question=='2021-21E-04')].rows[1].col3", + "$..[?(@.question=='2021-21E-01')].rows[1].col3" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col4": [ + { + "targets": [ + "$..[?(@.question=='2021-21E-04')].rows[1].col4", + "$..[?(@.question=='2021-21E-01')].rows[1].col4" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col5": [ + { + "targets": [ + "$..[?(@.question=='2021-21E-04')].rows[1].col5", + "$..[?(@.question=='2021-21E-01')].rows[1].col5" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col6": [ + { + "targets": [ + "$..[?(@.question=='2021-21E-04')].rows[1].col6", + "$..[?(@.question=='2021-21E-01')].rows[1].col6" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ] + }, + { + "col1": "B. Managed Care Arrangements", + "col2": [ + { + "targets": [ + "$..[?(@.question=='2021-21E-04')].rows[2].col2", + "$..[?(@.question=='2021-21E-01')].rows[2].col2" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col3": [ + { + "targets": [ + "$..[?(@.question=='2021-21E-04')].rows[2].col3", + "$..[?(@.question=='2021-21E-01')].rows[2].col3" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col4": [ + { + "targets": [ + "$..[?(@.question=='2021-21E-04')].rows[2].col4", + "$..[?(@.question=='2021-21E-01')].rows[2].col4" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col5": [ + { + "targets": [ + "$..[?(@.question=='2021-21E-04')].rows[2].col5", + "$..[?(@.question=='2021-21E-01')].rows[2].col5" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col6": [ + { + "targets": [ + "$..[?(@.question=='2021-21E-04')].rows[2].col6", + "$..[?(@.question=='2021-21E-01')].rows[2].col6" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ] + }, + { + "col1": "C. Primary Care Case Management", + "col2": [ + { + "targets": [ + "$..[?(@.question=='2021-21E-04')].rows[3].col2", + "$..[?(@.question=='2021-21E-01')].rows[3].col2" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col3": [ + { + "targets": [ + "$..[?(@.question=='2021-21E-04')].rows[3].col3", + "$..[?(@.question=='2021-21E-01')].rows[3].col3" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col4": [ + { + "targets": [ + "$..[?(@.question=='2021-21E-04')].rows[3].col4", + "$..[?(@.question=='2021-21E-01')].rows[3].col4" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col5": [ + { + "targets": [ + "$..[?(@.question=='2021-21E-04')].rows[3].col5", + "$..[?(@.question=='2021-21E-01')].rows[3].col5" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col6": [ + { + "targets": [ + "$..[?(@.question=='2021-21E-04')].rows[3].col6", + "$..[?(@.question=='2021-21E-01')].rows[3].col6" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ] + } + ], + "last_modified": "2021-01-15T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2021-01-15T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2021-21E-06", + "form_id": "1", + "form": "21E", + "year": 2021, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "label": "What is the number of children &&&VARIABLE&&& enrolled at the end of the quarter?", + "age_ranges": [ + { "key": "0000", "label": "Under Age 0" }, + { "key": "0001", "label": "Ages 0 - 1" }, + { "key": "0105", "label": "Ages 1 - 5" }, + { "key": "0612", "label": "Ages 6 - 12" }, + { "key": "1318", "label": "Ages 13 - 18" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2021-01-15T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2021-01-15T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2021-21E-07", + "form_id": "1", + "form": "21E", + "year": 2021, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "context_data": { + "show_if_quarter_in": ["4"] + }, + "label": "What is the unduplicated number of children &&&VARIABLE&&& ever enrolled during the year?", + "age_ranges": [ + { "key": "0000", "label": "Under Age 0" }, + { "key": "0001", "label": "Ages 0 - 1" }, + { "key": "0105", "label": "Ages 1 - 5" }, + { "key": "0612", "label": "Ages 6 - 12" }, + { "key": "1318", "label": "Ages 13 - 18" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2021-01-15T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2021-01-15T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2021-21E-08", + "form_id": "1", + "form": "21E", + "year": 2021, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "context_data": { + "show_if_quarter_in": ["4"] + }, + "label": "What is the unduplicated number of new enrollees &&&VARIABLE&&& during the year?", + "age_ranges": [ + { "key": "0000", "label": "Under Age 0" }, + { "key": "0001", "label": "Ages 0 - 1" }, + { "key": "0105", "label": "Ages 1 - 5" }, + { "key": "0612", "label": "Ages 6 - 12" }, + { "key": "1318", "label": "Ages 13 - 18" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2021-01-15T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2021-01-15T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2021-21E-09", + "form_id": "1", + "form": "21E", + "year": 2021, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "context_data": { + "show_if_quarter_in": ["4"] + }, + "label": "What is the unduplicated number of disenrollees &&&VARIABLE&&& during the year?", + "age_ranges": [ + { "key": "0000", "label": "Under Age 0" }, + { "key": "0001", "label": "Ages 0 - 1" }, + { "key": "0105", "label": "Ages 1 - 5" }, + { "key": "0612", "label": "Ages 6 - 12" }, + { "key": "1318", "label": "Ages 13 - 18" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2021-01-15T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2021-01-15T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2021-21PW-01", + "form_id": "6", + "form": "21PW", + "year": 2021, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "label": "What is the unduplicated number of pregnant women ever enrolled during the quarter?", + "age_ranges": [ + { "key": "1964", "label": "Age 19 years through age 64 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2021-10-01T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2021-10-01T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2021-21PW-02", + "form_id": "6", + "form": "21PW", + "year": 2021, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "label": "What is the unduplicated number of new enrollees in the quarter?", + "age_ranges": [ + { "key": "1964", "label": "Age 19 years through age 64 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2021-10-01T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2021-10-01T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2021-21PW-03", + "form_id": "6", + "form": "21PW", + "year": 2021, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "label": "What is the unduplicated number of disenrollees in the quarter?", + "age_ranges": [ + { "key": "1964", "label": "Age 19 years through age 64 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2021-10-01T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2021-10-01T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2021-21PW-04", + "form_id": "6", + "form": "21PW", + "year": 2021, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "label": "What is the number of member-months of enrollment for pregnant women in the quarter?", + "age_ranges": [ + { "key": "1964", "label": "Age 19 years through age 64 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2021-10-01T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2021-10-01T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2021-21PW-05", + "form_id": "6", + "form": "21PW", + "year": 2021, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "label": "What is the average number of months of enrollment for pregnant women ever enrolled during the quarter?", + "readonly": true, + "comment": "Divide the entries in Question 4 by the entries in Question 1.", + "age_ranges": [ + { "key": "1964", "label": "Age 19 years through age 64 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301" + }, + { + "col1": "A. Fee-for-Service", + "col2": [ + { + "targets": [ + "$..[?(@.question=='2021-21PW-04')].rows[1].col2", + "$..[?(@.question=='2021-21PW-01')].rows[1].col2" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col3": [ + { + "targets": [ + "$..[?(@.question=='2021-21PW-04')].rows[1].col3", + "$..[?(@.question=='2021-21PW-01')].rows[1].col3" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col4": [ + { + "targets": [ + "$..[?(@.question=='2021-21PW-04')].rows[1].col4", + "$..[?(@.question=='2021-21PW-01')].rows[1].col4" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col5": [ + { + "targets": [ + "$..[?(@.question=='2021-21PW-04')].rows[1].col5", + "$..[?(@.question=='2021-21PW-01')].rows[1].col5" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col6": [ + { + "targets": [ + "$..[?(@.question=='2021-21PW-04')].rows[1].col6", + "$..[?(@.question=='2021-21PW-01')].rows[1].col6" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ] + }, + { + "col1": "B. Managed Care Arrangements", + "col2": [ + { + "targets": [ + "$..[?(@.question=='2021-21PW-04')].rows[2].col2", + "$..[?(@.question=='2021-21PW-01')].rows[2].col2" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col3": [ + { + "targets": [ + "$..[?(@.question=='2021-21PW-04')].rows[2].col3", + "$..[?(@.question=='2021-21PW-01')].rows[2].col3" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col4": [ + { + "targets": [ + "$..[?(@.question=='2021-21PW-04')].rows[2].col4", + "$..[?(@.question=='2021-21PW-01')].rows[2].col4" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col5": [ + { + "targets": [ + "$..[?(@.question=='2021-21PW-04')].rows[2].col5", + "$..[?(@.question=='2021-21PW-01')].rows[2].col5" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col6": [ + { + "targets": [ + "$..[?(@.question=='2021-21PW-04')].rows[2].col6", + "$..[?(@.question=='2021-21PW-01')].rows[2].col6" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ] + }, + { + "col1": "C. Primary Care Case Management", + "col2": [ + { + "targets": [ + "$..[?(@.question=='2021-21PW-04')].rows[3].col2", + "$..[?(@.question=='2021-21PW-01')].rows[3].col2" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col3": [ + { + "targets": [ + "$..[?(@.question=='2021-21PW-04')].rows[3].col3", + "$..[?(@.question=='2021-21PW-01')].rows[3].col3" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col4": [ + { + "targets": [ + "$..[?(@.question=='2021-21PW-04')].rows[3].col4", + "$..[?(@.question=='2021-21PW-01')].rows[3].col4" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col5": [ + { + "targets": [ + "$..[?(@.question=='2021-21PW-04')].rows[3].col5", + "$..[?(@.question=='2021-21PW-01')].rows[3].col5" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col6": [ + { + "targets": [ + "$..[?(@.question=='2021-21PW-04')].rows[3].col6", + "$..[?(@.question=='2021-21PW-01')].rows[3].col6" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ] + } + ], + "last_modified": "2021-10-01T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2021-10-01T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2021-21PW-06", + "form_id": "6", + "form": "21PW", + "year": 2021, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "label": "What is the number of pregnant women enrolled at the end of the quarter?", + "age_ranges": [ + { "key": "1964", "label": "Age 19 years through age 64 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2021-10-01T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2021-10-01T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2021-21PW-07", + "form_id": "6", + "form": "21PW", + "year": 2021, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "context_data": { + "show_if_quarter_in": ["4"] + }, + "label": "What is the unduplicated number of pregnant women ever enrolled during the year?", + "age_ranges": [ + { "key": "1964", "label": "Age 19 years through age 64 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2021-10-01T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2021-10-01T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2021-21PW-08", + "form_id": "6", + "form": "21PW", + "year": 2021, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "context_data": { + "show_if_quarter_in": ["4"] + }, + "label": "What is the unduplicated number of new enrollees during the year?", + "age_ranges": [ + { "key": "1964", "label": "Age 19 years through age 64 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2021-10-01T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2021-10-01T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2021-21PW-09", + "form_id": "6", + "form": "21PW", + "year": 2021, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "context_data": { + "show_if_quarter_in": ["4"] + }, + "label": "What is the unduplicated number of disenrollees during the year?", + "age_ranges": [ + { "key": "1964", "label": "Age 19 years through age 64 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2021-10-01T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2021-10-01T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2021-64.21E-01", + "form_id": "3", + "form": "64.21E", + "year": 2021, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "label": "What is the unduplicated number of children &&&VARIABLE&&& ever enrolled during the quarter?", + "age_ranges": [ + { "key": "0001", "label": "Birth through age 12 months" }, + { "key": "0105", "label": "Age 1 year through age 5 years" }, + { "key": "0612", "label": "Age 6 years through age 12 years" }, + { "key": "1318", "label": "Age 13 years through age 18 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2021-01-15T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2021-01-15T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2021-64.21E-02", + "form_id": "3", + "form": "64.21E", + "year": 2021, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "label": "What is the unduplicated number of new enrollees &&&VARIABLE&&& in the quarter?", + "age_ranges": [ + { "key": "0001", "label": "Birth through age 12 months" }, + { "key": "0105", "label": "Age 1 year through age 5 years" }, + { "key": "0612", "label": "Age 6 years through age 12 years" }, + { "key": "1318", "label": "Age 13 years through age 18 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2021-01-15T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2021-01-15T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2021-64.21E-03", + "form_id": "3", + "form": "64.21E", + "year": 2021, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "label": "What is the unduplicated number of disenrollees &&&VARIABLE&&& in the quarter?", + "age_ranges": [ + { "key": "0001", "label": "Birth through age 12 months" }, + { "key": "0105", "label": "Age 1 year through age 5 years" }, + { "key": "0612", "label": "Age 6 years through age 12 years" }, + { "key": "1318", "label": "Age 13 years through age 18 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2021-01-15T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2021-01-15T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2021-64.21E-04", + "form_id": "3", + "form": "64.21E", + "year": 2021, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "label": "What is the number of member-months of enrollment for children &&&VARIABLE&&& in the quarter?", + "age_ranges": [ + { "key": "0001", "label": "Birth through age 12 months" }, + { "key": "0105", "label": "Age 1 year through age 5 years" }, + { "key": "0612", "label": "Age 6 years through age 12 years" }, + { "key": "1318", "label": "Age 13 years through age 18 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2021-01-15T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2021-01-15T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2021-64.21E-05", + "form_id": "3", + "form": "64.21E", + "year": 2021, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "label": "What is the average number of months of enrollment for children &&&VARIABLE&&& ever enrolled during the quarter?", + "readonly": true, + "comment": "Divide the entries in Question 4 by the entries in Question 1.", + "age_ranges": [ + { "key": "0001", "label": "Birth through age 12 months" }, + { "key": "0105", "label": "Age 1 year through age 5 years" }, + { "key": "0612", "label": "Age 6 years through age 12 years" }, + { "key": "1318", "label": "Age 13 years through age 18 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": [ + { + "targets": [ + "$..[?(@.question=='2021-64.21E-04')].rows[1].col2", + "$..[?(@.question=='2021-64.21E-01')].rows[1].col2" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col3": [ + { + "targets": [ + "$..[?(@.question=='2021-64.21E-04')].rows[1].col3", + "$..[?(@.question=='2021-64.21E-01')].rows[1].col3" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col4": [ + { + "targets": [ + "$..[?(@.question=='2021-64.21E-04')].rows[1].col4", + "$..[?(@.question=='2021-64.21E-01')].rows[1].col4" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col5": [ + { + "targets": [ + "$..[?(@.question=='2021-64.21E-04')].rows[1].col5", + "$..[?(@.question=='2021-64.21E-01')].rows[1].col5" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col6": [ + { + "targets": [ + "$..[?(@.question=='2021-64.21E-04')].rows[1].col6", + "$..[?(@.question=='2021-64.21E-01')].rows[1].col6" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ] + }, + { + "col1": "B. Managed Care Arrangements", + "col2": [ + { + "targets": [ + "$..[?(@.question=='2021-64.21E-04')].rows[2].col2", + "$..[?(@.question=='2021-64.21E-01')].rows[2].col2" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col3": [ + { + "targets": [ + "$..[?(@.question=='2021-64.21E-04')].rows[2].col3", + "$..[?(@.question=='2021-64.21E-01')].rows[2].col3" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col4": [ + { + "targets": [ + "$..[?(@.question=='2021-64.21E-04')].rows[2].col4", + "$..[?(@.question=='2021-64.21E-01')].rows[2].col4" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col5": [ + { + "targets": [ + "$..[?(@.question=='2021-64.21E-04')].rows[2].col5", + "$..[?(@.question=='2021-64.21E-01')].rows[2].col5" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col6": [ + { + "targets": [ + "$..[?(@.question=='2021-64.21E-04')].rows[2].col6", + "$..[?(@.question=='2021-64.21E-01')].rows[2].col6" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ] + }, + { + "col1": "C. Primary Care Case Management", + "col2": [ + { + "targets": [ + "$..[?(@.question=='2021-64.21E-04')].rows[3].col2", + "$..[?(@.question=='2021-64.21E-01')].rows[3].col2" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col3": [ + { + "targets": [ + "$..[?(@.question=='2021-64.21E-04')].rows[3].col3", + "$..[?(@.question=='2021-64.21E-01')].rows[3].col3" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col4": [ + { + "targets": [ + "$..[?(@.question=='2021-64.21E-04')].rows[3].col4", + "$..[?(@.question=='2021-64.21E-01')].rows[3].col4" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col5": [ + { + "targets": [ + "$..[?(@.question=='2021-64.21E-04')].rows[3].col5", + "$..[?(@.question=='2021-64.21E-01')].rows[3].col5" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col6": [ + { + "targets": [ + "$..[?(@.question=='2021-64.21E-04')].rows[3].col6", + "$..[?(@.question=='2021-64.21E-01')].rows[3].col6" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ] + } + ], + "last_modified": "2021-01-15T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2021-01-15T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2021-64.21E-06", + "form_id": "3", + "form": "64.21E", + "year": 2021, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "label": "What is the number of children &&&VARIABLE&&& enrolled at the end of the quarter?", + "age_ranges": [ + { "key": "0001", "label": "Birth through age 12 months" }, + { "key": "0105", "label": "Age 1 year through age 5 years" }, + { "key": "0612", "label": "Age 6 years through age 12 years" }, + { "key": "1318", "label": "Age 13 years through age 18 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2021-01-15T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2021-01-15T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2021-64.21E-07", + "form_id": "3", + "form": "64.21E", + "year": 2021, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "context_data": { + "show_if_quarter_in": ["4"] + }, + "label": "What is the unduplicated number of children &&&VARIABLE&&& ever enrolled during the year?", + "age_ranges": [ + { "key": "0001", "label": "Birth through age 12 months" }, + { "key": "0105", "label": "Age 1 year through age 5 years" }, + { "key": "0612", "label": "Age 6 years through age 12 years" }, + { "key": "1318", "label": "Age 13 years through age 18 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2021-01-15T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2021-01-15T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2021-64.21E-08", + "form_id": "3", + "form": "64.21E", + "year": 2021, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "context_data": { + "show_if_quarter_in": ["4"] + }, + "label": "What is the unduplicated number of new enrollees &&&VARIABLE&&& during the year?", + "age_ranges": [ + { "key": "0001", "label": "Birth through age 12 months" }, + { "key": "0105", "label": "Age 1 year through age 5 years" }, + { "key": "0612", "label": "Age 6 years through age 12 years" }, + { "key": "1318", "label": "Age 13 years through age 18 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2021-01-15T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2021-01-15T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2021-64.21E-09", + "form_id": "3", + "form": "64.21E", + "year": 2021, + "type": "datagridwithtotals", + "row_total": true, + "column_total": true, + "context_data": { + "show_if_quarter_in": ["4"] + }, + "label": "What is the unduplicated number of disenrollees &&&VARIABLE&&& during the year?", + "age_ranges": [ + { "key": "0001", "label": "Birth through age 12 months" }, + { "key": "0105", "label": "Age 1 year through age 5 years" }, + { "key": "0612", "label": "Age 6 years through age 12 years" }, + { "key": "1318", "label": "Age 13 years through age 18 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2021-01-15T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2021-01-15T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2021-64.EC-01", + "form": "64.EC", + "year": 2021, + "type": "datagridwithtotals", + "rowTotal": true, + "columnTotal": true, + "label": "What is the unduplicated number of children &&&VARIABLE&&& ever enrolled during the quarter?", + "age_ranges": [ + { "key": "0001", "label": "Birth through age 12 months" }, + { "key": "0105", "label": "Age 1 year through age 5 years" }, + { "key": "0612", "label": "Age 6 years through age 12 years" }, + { "key": "1318", "label": "Age 13 years through age 18 years" }, + { "key": "1920", "label": "Age 19 years through age 20 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "lastModified": "2021-01-15T12:46:35.838Z", + "lastModifiedBY": "seed", + "createdDate": "2021-01-15T12:46:35.838Z", + "createdBY": "seed" + }, + { + "question": "2021-64.EC-02", + "form": "64.EC", + "year": 2021, + "type": "datagridwithtotals", + "rowTotal": true, + "columnTotal": true, + "label": "What is the unduplicated number of new enrollees &&&VARIABLE&&& in the quarter?", + "age_ranges": [ + { "key": "0001", "label": "Birth through age 12 months" }, + { "key": "0105", "label": "Age 1 year through age 5 years" }, + { "key": "0612", "label": "Age 6 years through age 12 years" }, + { "key": "1318", "label": "Age 13 years through age 18 years" }, + { "key": "1920", "label": "Age 19 years through age 20 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "lastModified": "2021-01-15T12:46:35.838Z", + "lastModifiedBY": "seed", + "createdDate": "2021-01-15T12:46:35.838Z", + "createdBY": "seed" + }, + { + "question": "2021-64.EC-03", + "form": "64.EC", + "year": 2021, + "type": "datagridwithtotals", + "rowTotal": true, + "columnTotal": true, + "label": "What is the unduplicated number of disenrollees &&&VARIABLE&&& in the quarter?", + "age_ranges": [ + { "key": "0001", "label": "Birth through age 12 months" }, + { "key": "0105", "label": "Age 1 year through age 5 years" }, + { "key": "0612", "label": "Age 6 years through age 12 years" }, + { "key": "1318", "label": "Age 13 years through age 18 years" }, + { "key": "1920", "label": "Age 19 years through age 20 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "lastModified": "2021-01-15T12:46:35.838Z", + "lastModifiedBY": "seed", + "createdDate": "2021-01-15T12:46:35.838Z", + "createdBY": "seed" + }, + { + "question": "2021-64.EC-04", + "form": "64.EC", + "year": 2021, + "type": "datagridwithtotals", + "rowTotal": true, + "columnTotal": true, + "label": "What is the number of member-months of enrollment for children &&&VARIABLE&&& in the quarter?", + "age_ranges": [ + { "key": "0001", "label": "Birth through age 12 months" }, + { "key": "0105", "label": "Age 1 year through age 5 years" }, + { "key": "0612", "label": "Age 6 years through age 12 years" }, + { "key": "1318", "label": "Age 13 years through age 18 years" }, + { "key": "1920", "label": "Age 19 years through age 20 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "lastModified": "2021-01-15T12:46:35.838Z", + "lastModifiedBY": "seed", + "createdDate": "2021-01-15T12:46:35.838Z", + "createdBY": "seed" + }, + { + "question": "2021-64.EC-05", + "form": "64.EC", + "year": 2021, + "type": "datagridwithtotals", + "rowTotal": true, + "columnTotal": true, + "label": "What is the average number of months of enrollment for children &&&VARIABLE&&& ever enrolled during the quarter?", + "readonly": true, + "comment": "Divide the entries in Question 4 by the entries in Question 1.", + "age_ranges": [ + { "key": "0001", "label": "Birth through age 12 months" }, + { "key": "0105", "label": "Age 1 year through age 5 years" }, + { "key": "0612", "label": "Age 6 years through age 12 years" }, + { "key": "1318", "label": "Age 13 years through age 18 years" }, + { "key": "1920", "label": "Age 19 years through age 20 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": [ + { + "targets": [ + "$..[?(@.question=='2021-64.EC-04')].rows[1].col2", + "$..[?(@.question=='2021-64.EC-01')].rows[1].col2" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col3": [ + { + "targets": [ + "$..[?(@.question=='2021-64.EC-04')].rows[1].col3", + "$..[?(@.question=='2021-64.EC-01')].rows[1].col3" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col4": [ + { + "targets": [ + "$..[?(@.question=='2021-64.EC-04')].rows[1].col4", + "$..[?(@.question=='2021-64.EC-01')].rows[1].col4" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col5": [ + { + "targets": [ + "$..[?(@.question=='2021-64.EC-04')].rows[1].col5", + "$..[?(@.question=='2021-64.EC-01')].rows[1].col5" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col6": [ + { + "targets": [ + "$..[?(@.question=='2021-64.EC-04')].rows[1].col6", + "$..[?(@.question=='2021-64.EC-01')].rows[1].col6" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ] + }, + { + "col1": "B. Managed Care Arrangements", + "col2": [ + { + "targets": [ + "$..[?(@.question=='2021-64.EC-04')].rows[2].col2", + "$..[?(@.question=='2021-64.EC-01')].rows[2].col2" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col3": [ + { + "targets": [ + "$..[?(@.question=='2021-64.EC-04')].rows[2].col3", + "$..[?(@.question=='2021-64.EC-01')].rows[2].col3" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col4": [ + { + "targets": [ + "$..[?(@.question=='2021-64.EC-04')].rows[2].col4", + "$..[?(@.question=='2021-64.EC-01')].rows[2].col4" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col5": [ + { + "targets": [ + "$..[?(@.question=='2021-64.EC-04')].rows[2].col5", + "$..[?(@.question=='2021-64.EC-01')].rows[2].col5" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col6": [ + { + "targets": [ + "$..[?(@.question=='2021-64.EC-04')].rows[2].col6", + "$..[?(@.question=='2021-64.EC-01')].rows[2].col6" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ] + }, + { + "col1": "C. Primary Care Case Management", + "col2": [ + { + "targets": [ + "$..[?(@.question=='2021-64.EC-04')].rows[3].col2", + "$..[?(@.question=='2021-64.EC-01')].rows[3].col2" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col3": [ + { + "targets": [ + "$..[?(@.question=='2021-64.EC-04')].rows[3].col3", + "$..[?(@.question=='2021-64.EC-01')].rows[3].col3" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col4": [ + { + "targets": [ + "$..[?(@.question=='2021-64.EC-04')].rows[3].col4", + "$..[?(@.question=='2021-64.EC-01')].rows[3].col4" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col5": [ + { + "targets": [ + "$..[?(@.question=='2021-64.EC-04')].rows[3].col5", + "$..[?(@.question=='2021-64.EC-01')].rows[3].col5" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ], + "col6": [ + { + "targets": [ + "$..[?(@.question=='2021-64.EC-04')].rows[3].col6", + "$..[?(@.question=='2021-64.EC-01')].rows[3].col6" + ], + "actions": ["formula"], + "formula": "<0> / <1>" + } + ] + } + ], + "lastModified": "2021-01-15T12:46:35.838Z", + "lastModifiedBY": "seed", + "createdDate": "2021-01-15T12:46:35.838Z", + "createdBY": "seed" + }, + { + "question": "2021-64.EC-06", + "form": "64.EC", + "year": 2021, + "type": "datagridwithtotals", + "rowTotal": true, + "columnTotal": true, + "label": "What is the number of children &&&VARIABLE&&& enrolled at the end of the quarter?", + "age_ranges": [ + { "key": "0001", "label": "Birth through age 12 months" }, + { "key": "0105", "label": "Age 1 year through age 5 years" }, + { "key": "0612", "label": "Age 6 years through age 12 years" }, + { "key": "1318", "label": "Age 13 years through age 18 years" }, + { "key": "1920", "label": "Age 19 years through age 20 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "lastModified": "2021-01-15T12:46:35.838Z", + "lastModifiedBY": "seed", + "createdDate": "2021-01-15T12:46:35.838Z", + "createdBY": "seed" + }, + { + "question": "2021-64.EC-07", + "form": "64.EC", + "year": 2021, + "type": "datagridwithtotals", + "rowTotal": true, + "columnTotal": true, + "context_data": { + "show_if_quarter_in": ["4"] + }, + "label": "What is the unduplicated number of children &&&VARIABLE&&& ever enrolled during the year?", + "age_ranges": [ + { "key": "0001", "label": "Birth through age 12 months" }, + { "key": "0105", "label": "Age 1 year through age 5 years" }, + { "key": "0612", "label": "Age 6 years through age 12 years" }, + { "key": "1318", "label": "Age 13 years through age 18 years" }, + { "key": "1920", "label": "Age 19 years through age 20 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "lastModified": "2021-01-15T12:46:35.838Z", + "lastModifiedBY": "seed", + "createdDate": "2021-01-15T12:46:35.838Z", + "createdBY": "seed" + }, + { + "question": "2021-64.EC-08", + "form": "64.EC", + "year": 2021, + "type": "datagridwithtotals", + "rowTotal": true, + "columnTotal": true, + "context_data": { + "show_if_quarter_in": ["4"] + }, + "label": "What is the unduplicated number of new enrollees &&&VARIABLE&&& during the year?", + "age_ranges": [ + { "key": "0001", "label": "Birth through age 12 months" }, + { "key": "0105", "label": "Age 1 year through age 5 years" }, + { "key": "0612", "label": "Age 6 years through age 12 years" }, + { "key": "1318", "label": "Age 13 years through age 18 years" }, + { "key": "1920", "label": "Age 19 years through age 20 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "lastModified": "2021-01-15T12:46:35.838Z", + "lastModifiedBY": "seed", + "createdDate": "2021-01-15T12:46:35.838Z", + "createdBY": "seed" + }, + { + "question": "2021-64.EC-09", + "form": "64.EC", + "year": 2021, + "type": "datagridwithtotals", + "rowTotal": true, + "columnTotal": true, + "context_data": { + "show_if_quarter_in": ["4"] + }, + "label": "What is the unduplicated number of disenrollees &&&VARIABLE&&& during the year?", + "age_ranges": [ + { "key": "0001", "label": "Birth through age 12 months" }, + { "key": "0105", "label": "Age 1 year through age 5 years" }, + { "key": "0612", "label": "Age 6 years through age 12 years" }, + { "key": "1318", "label": "Age 13 years through age 18 years" }, + { "key": "1920", "label": "Age 19 years through age 20 years" } + ], + "rows": [ + { + "col1": "", + "col2": "% of FPL 0-133", + "col3": "% of FPL 134-200", + "col4": "% of FPL 201-250", + "col5": "% of FPL 251-300", + "col6": "% of FPL 301-317" + }, + { + "col1": "A. Fee-for-Service", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "B. Managed Care Arrangements", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "C. Primary Care Case Management", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "lastModified": "2021-01-15T12:46:35.838Z", + "lastModifiedBY": "seed", + "createdDate": "2021-01-15T12:46:35.838Z", + "createdBY": "seed" + }, + { + "question": "2021-GRE-01", + "form_id": "5", + "form": "GRE", + "year": 2021, + "type": "gregridwithtotals", + "row_total": true, + "column_total": true, + "label": "What is the number of enrollees by gender?", + "age_ranges": [ + { "key": "0018", "label": "Conception through age 18 years" } + ], + "rows": [ + { + "col1": "", + "col2": "21E Enrolled", + "col3": "64.21E Enrolled", + "col4": "Total CHIP Enrolled", + "col5": "64.EC Enrolled", + "col6": "21PW Enrolled" + }, + { + "col1": "1. Female", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "2. Male", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "3. Unspecified Gender", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2021-10-01T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2021-10-01T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2021-GRE-02", + "form_id": "5", + "form": "GRE", + "year": 2021, + "type": "gregridwithtotals", + "row_total": true, + "column_total": true, + "label": "What is the number of enrollees by race?", + "age_ranges": [ + { "key": "0018", "label": "Conception through age 18 years" } + ], + "rows": [ + { + "col1": "", + "col2": "21E Enrolled", + "col3": "64.21E Enrolled", + "col4": "Total CHIP Enrolled", + "col5": "64.EC Enrolled", + "col6": "21PW Enrolled" + }, + { + "col1": "1. White", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "2. Black or African American", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "3. American Indian or Alaska Native", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "4. Asian Indian", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "5. Chinese", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "6. Filipino", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "7. Japanese", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "8. Korean", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "9. Vietnamese", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "10. Other Asian", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "11. Asian Unknown", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "12. Native Hawaiian", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "13. Guamanian or Chamorro", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "14. Samoan", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "15. Other Pacific Islander", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "16. Native Hawaiian or Other Pacific Islander Unknown", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "17. Some other race", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "18. Two or more races (regardless of ethnicity)", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "19. Unspecified Race", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2021-10-01T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2021-10-01T12:46:35.838Z", + "created_by": "seed" + }, + { + "question": "2021-GRE-03", + "form_id": "5", + "form": "GRE", + "year": 2021, + "type": "gregridwithtotals", + "row_total": true, + "column_total": true, + "label": "What is the number of enrollees by ethnicity?", + "age_ranges": [ + { "key": "0018", "label": "Conception through age 18 years" } + ], + "rows": [ + { + "col1": "", + "col2": "21E Enrolled", + "col3": "64.21E Enrolled", + "col4": "Total CHIP Enrolled", + "col5": "64.EC Enrolled", + "col6": "21PW Enrolled" + }, + { + "col1": "1. Not of Hispanic, Latino/a, or Spanish origin", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "2. Mexican, Mexican American, Chicano/a", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "3. Puerto Rican", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "4. Cuban", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "5. Another Hispanic, Latino, or Spanish Origin", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "6. Hispanic or Latino Unknown", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + }, + { + "col1": "7. Unspecified Ethnicity", + "col2": null, + "col3": null, + "col4": null, + "col5": null, + "col6": null + } + ], + "last_modified": "2021-10-01T12:46:35.838Z", + "last_modified_by": "seed", + "created_date": "2021-10-01T12:46:35.838Z", + "created_by": "seed" + } + ] + } +] diff --git a/src/database/initial_data_load/forms.json b/services/database/data/initial_data_load/forms.json similarity index 100% rename from src/database/initial_data_load/forms.json rename to services/database/data/initial_data_load/forms.json diff --git a/src/database/initial_data_load/state_forms.json b/services/database/data/initial_data_load/state_forms.json similarity index 100% rename from src/database/initial_data_load/state_forms.json rename to services/database/data/initial_data_load/state_forms.json diff --git a/src/database/initial_data_load/state_forms_2020.json b/services/database/data/initial_data_load/state_forms_2020.json similarity index 100% rename from src/database/initial_data_load/state_forms_2020.json rename to services/database/data/initial_data_load/state_forms_2020.json diff --git a/src/database/initial_data_load/state_forms_2021Q1.json b/services/database/data/initial_data_load/state_forms_2021Q1.json similarity index 100% rename from src/database/initial_data_load/state_forms_2021Q1.json rename to services/database/data/initial_data_load/state_forms_2021Q1.json diff --git a/src/database/initial_data_load/states.json b/services/database/data/initial_data_load/states.json similarity index 100% rename from src/database/initial_data_load/states.json rename to services/database/data/initial_data_load/states.json diff --git a/src/database/initial_data_load/status.json b/services/database/data/initial_data_load/status.json similarity index 100% rename from src/database/initial_data_load/status.json rename to services/database/data/initial_data_load/status.json diff --git a/services/database/handlers/seed/seed.js b/services/database/handlers/seed/seed.js new file mode 100644 index 000000000..8f7869a71 --- /dev/null +++ b/services/database/handlers/seed/seed.js @@ -0,0 +1,50 @@ +/* eslint-disable no-console */ +const { PutCommand } = require("@aws-sdk/lib-dynamodb"); +const { buildDynamoClient } = require("../../utils/dynamodb.js"); + +/** + * Custom handler for seeding deployed environments with required data. + * Simple functionality to add required section base templates to each branch + */ +async function myHandler(_event, _context, _callback) { + if (process.env.seedData !== "true") { + console.log("Seed data not enabled for environment, skipping."); + return; + } + console.log("Seeding Tables..."); + + const { tables } = require("./tables"); + + for (const table of tables) { + await runSeed(table); + } + + console.log("Seed Finished"); +} + +/** + * @param {{ + * filenames: string[]; + * tableNameSuffix: string; + * }} seedInstructions + */ +const runSeed = async (seedInstructions) => { + const { filenames, tableNameSuffix } = seedInstructions; + const dynamoClient = buildDynamoClient(); + for (const filename of filenames) { + const TableName = `${process.env.dynamoPrefix}-${tableNameSuffix}`; + if (!filenames || filenames <= 0) continue; + const items = require(filename); + if (!items || items.length <= 0) continue; + + try { + for (const Item of items) { + await dynamoClient.send(new PutCommand({ TableName, Item })); + } + } catch (e) { + console.log(` -- ERROR UPLOADING ${TableName}\n`, e); + } + } +}; + +exports.handler = myHandler; diff --git a/services/database/handlers/seed/tables.js b/services/database/handlers/seed/tables.js new file mode 100644 index 000000000..a71a28ff5 --- /dev/null +++ b/services/database/handlers/seed/tables.js @@ -0,0 +1,113 @@ +module.exports = { + tables: [ + { + filenames: ["../../data/initial_data_load/age_ranges.json"], + tableNameSuffix: "age-ranges", + }, + { + filenames: ["../../data/initial_data_load/auth_user.json"], + tableNameSuffix: "auth-user", + }, + { + filenames: ["../../data/initial_data_load/auth_user_roles.json"], + tableNameSuffix: "auth-user-roles", + }, + { + filenames: [ + "../../data/initial_data_load/form_questions_2021.json", + "../../data/initial_data_load/form_questions_2020.json", + ], + tableNameSuffix: "form-questions", + }, + { + filenames: [ + "../../data/initial_data_load/form_template_2019.json", + "../../data/initial_data_load/form_template_2020.json", + "../../data/initial_data_load/form_template_2021.json", + ], + tableNameSuffix: "form-templates", + }, + { + filenames: ["../../data/initial_data_load/forms.json"], + tableNameSuffix: "forms", + }, + { + filenames: [ + "../../data/initial_data_load/form_answers_AL.json", + "../../data/initial_data_load/form_answers_AK.json", + "../../data/initial_data_load/form_answers_AZ.json", + "../../data/initial_data_load/form_answers_AR.json", + "../../data/initial_data_load/form_answers_CA.json", + "../../data/initial_data_load/form_answers_CO.json", + "../../data/initial_data_load/form_answers_CT.json", + "../../data/initial_data_load/form_answers_DE.json", + "../../data/initial_data_load/form_answers_DC.json", + "../../data/initial_data_load/form_answers_FL.json", + "../../data/initial_data_load/form_answers_GA.json", + "../../data/initial_data_load/form_answers_HI.json", + "../../data/initial_data_load/form_answers_ID.json", + "../../data/initial_data_load/form_answers_IL.json", + "../../data/initial_data_load/form_answers_IN.json", + "../../data/initial_data_load/form_answers_IA.json", + "../../data/initial_data_load/form_answers_KS.json", + "../../data/initial_data_load/form_answers_KY.json", + "../../data/initial_data_load/form_answers_LA.json", + "../../data/initial_data_load/form_answers_ME.json", + "../../data/initial_data_load/form_answers_MD.json", + "../../data/initial_data_load/form_answers_MA.json", + "../../data/initial_data_load/form_answers_MI.json", + "../../data/initial_data_load/form_answers_MN.json", + "../../data/initial_data_load/form_answers_MO.json", + "../../data/initial_data_load/form_answers_MS.json", + "../../data/initial_data_load/form_answers_MT.json", + "../../data/initial_data_load/form_answers_NE.json", + "../../data/initial_data_load/form_answers_NV.json", + "../../data/initial_data_load/form_answers_NH.json", + "../../data/initial_data_load/form_answers_NJ.json", + "../../data/initial_data_load/form_answers_NM.json", + "../../data/initial_data_load/form_answers_NY.json", + "../../data/initial_data_load/form_answers_NC.json", + "../../data/initial_data_load/form_answers_ND.json", + "../../data/initial_data_load/form_answers_OH.json", + "../../data/initial_data_load/form_answers_OK.json", + "../../data/initial_data_load/form_answers_OR.json", + "../../data/initial_data_load/form_answers_PA.json", + "../../data/initial_data_load/form_answers_RI.json", + "../../data/initial_data_load/form_answers_SC.json", + "../../data/initial_data_load/form_answers_SD.json", + "../../data/initial_data_load/form_answers_TN.json", + "../../data/initial_data_load/form_answers_TX.json", + "../../data/initial_data_load/form_answers_UT.json", + "../../data/initial_data_load/form_answers_VT.json", + "../../data/initial_data_load/form_answers_VA.json", + "../../data/initial_data_load/form_answers_WA.json", + "../../data/initial_data_load/form_answers_WV.json", + "../../data/initial_data_load/form_answers_WI.json", + "../../data/initial_data_load/form_answers_WY.json", + "../../data/initial_data_load/form_answers_AL_2021Q1.json", + "../../data/initial_data_load/form_answers_MD_2021Q1.json", + "../../data/initial_data_load/form_answers_PA_2021Q1.json", + "../../data/initial_data_load/form_answers_AL_2020.json", + "../../data/initial_data_load/form_answers_MD_2020.json", + "../../data/initial_data_load/form_answers_PA_2020.json", + ], + tableNameSuffix: "form-answers", + }, + { + filenames: [ + "../../data/initial_data_load/state_forms.json", + "../../data/initial_data_load/state_forms_2021Q1.json", + "../../data/initial_data_load/state_forms_2020.json", + ], + tableNameSuffix: "state-forms", + }, + { + filenames: ["../../data/initial_data_load/states.json"], + tableNameSuffix: "states", + }, + { + filenames: ["../../data/initial_data_load/status.json"], + tableNameSuffix: "status", + }, + ], +}; diff --git a/services/database/serverless.yml b/services/database/serverless.yml index 2158441e6..f29e06793 100644 --- a/services/database/serverless.yml +++ b/services/database/serverless.yml @@ -6,10 +6,15 @@ plugins: - serverless-s3-bucket-helper - serverless-dynamodb - serverless-stack-termination-protection + - serverless-plugin-scripts + - serverless-offline + custom: project: "seds" stage: ${opt:stage, self:provider.stage} region: ${opt:region, self:provider.region} + iamPath: ${env:IAM_PATH, ssm:/configuration/${self:custom.stage}/iam/path, ssm:/configuration/default/iam/path, "/"} + iamPermissionsBoundaryPolicy: ${env:IAM_PERMISSIONS_BOUNDARY, ssm:/configuration/${self:custom.stage}/iam/permissionsBoundaryPolicy, ssm:/configuration/default/iam/permissionsBoundaryPolicy, ""} serverlessTerminationProtection: stages: # This is a list of common names for important envs that should not be destroyed. You can remove the stage names your project doesn't use; this list is meant to be inclusive. - master @@ -20,112 +25,24 @@ custom: - impl - val - prod - + seedDataMap: + production: false + val: false + master: false + default: true + seedData: ${self:custom.seedDataMap.${self:custom.stage}, self:custom.seedDataMap.default} + localDynamoEndpoint: ${env:DYNAMODB_URL, ""} + scripts: + hooks: + deploy:finalize: | + aws lambda invoke --region ${self:provider.region} --function-name ${self:service}-${self:custom.stage}-seed --invocation-type RequestResponse /dev/null dynamodb: stages: - local - - master start: port: 8000 inMemory: true migrate: true - seed: true - seed: - domain: - sources: - - table: ${self:custom.stage}-forms - sources: [../../src/database/initial_data_load/forms.json] - - table: ${self:custom.stage}-age-ranges - sources: [../../src/database/initial_data_load/age_ranges.json] - - table: ${self:custom.stage}-status - sources: [../../src/database/initial_data_load/status.json] - - table: ${self:custom.stage}-states - sources: [../../src/database/initial_data_load/states.json] - - table: ${self:custom.stage}-state-forms - sources: - [ - ../../src/database/initial_data_load/state_forms.json, - ../../src/database/initial_data_load/state_forms_2021Q1.json, - ../../src/database/initial_data_load/state_forms_2020.json, - ] - - table: ${self:custom.stage}-form-questions - sources: - [ - ../../src/database/initial_data_load/form_questions_2021.json, - ../../src/database/initial_data_load/form_questions_2020.json, - ] - - table: ${self:custom.stage}-form-templates - sources: - [ - ../../src/database/initial_data_load/form_template_2019.json, - ../../src/database/initial_data_load/form_template_2020.json, - ../../src/database/initial_data_load/form_template_2021.json, - ] - - table: ${self:custom.stage}-form-answers - sources: - [ - ../../src/database/initial_data_load/form_answers_AL.json, - ../../src/database/initial_data_load/form_answers_AK.json, - ../../src/database/initial_data_load/form_answers_AZ.json, - ../../src/database/initial_data_load/form_answers_AR.json, - ../../src/database/initial_data_load/form_answers_CA.json, - ../../src/database/initial_data_load/form_answers_CO.json, - ../../src/database/initial_data_load/form_answers_CT.json, - ../../src/database/initial_data_load/form_answers_DE.json, - ../../src/database/initial_data_load/form_answers_DC.json, - ../../src/database/initial_data_load/form_answers_FL.json, - ../../src/database/initial_data_load/form_answers_GA.json, - ../../src/database/initial_data_load/form_answers_HI.json, - ../../src/database/initial_data_load/form_answers_ID.json, - ../../src/database/initial_data_load/form_answers_IL.json, - ../../src/database/initial_data_load/form_answers_IN.json, - ../../src/database/initial_data_load/form_answers_IA.json, - ../../src/database/initial_data_load/form_answers_KS.json, - ../../src/database/initial_data_load/form_answers_KY.json, - ../../src/database/initial_data_load/form_answers_LA.json, - ../../src/database/initial_data_load/form_answers_ME.json, - ../../src/database/initial_data_load/form_answers_MD.json, - ../../src/database/initial_data_load/form_answers_MA.json, - ../../src/database/initial_data_load/form_answers_MI.json, - ../../src/database/initial_data_load/form_answers_MN.json, - ../../src/database/initial_data_load/form_answers_MO.json, - ../../src/database/initial_data_load/form_answers_MS.json, - ../../src/database/initial_data_load/form_answers_MT.json, - ../../src/database/initial_data_load/form_answers_NE.json, - ../../src/database/initial_data_load/form_answers_NV.json, - ../../src/database/initial_data_load/form_answers_NH.json, - ../../src/database/initial_data_load/form_answers_NJ.json, - ../../src/database/initial_data_load/form_answers_NM.json, - ../../src/database/initial_data_load/form_answers_NY.json, - ../../src/database/initial_data_load/form_answers_NC.json, - ../../src/database/initial_data_load/form_answers_ND.json, - ../../src/database/initial_data_load/form_answers_OH.json, - ../../src/database/initial_data_load/form_answers_OK.json, - ../../src/database/initial_data_load/form_answers_OR.json, - ../../src/database/initial_data_load/form_answers_PA.json, - ../../src/database/initial_data_load/form_answers_RI.json, - ../../src/database/initial_data_load/form_answers_SC.json, - ../../src/database/initial_data_load/form_answers_SD.json, - ../../src/database/initial_data_load/form_answers_TN.json, - ../../src/database/initial_data_load/form_answers_TX.json, - ../../src/database/initial_data_load/form_answers_UT.json, - ../../src/database/initial_data_load/form_answers_VT.json, - ../../src/database/initial_data_load/form_answers_VA.json, - ../../src/database/initial_data_load/form_answers_WA.json, - ../../src/database/initial_data_load/form_answers_WV.json, - ../../src/database/initial_data_load/form_answers_WI.json, - ../../src/database/initial_data_load/form_answers_WY.json, - ../../src/database/initial_data_load/form_answers_AL_2021Q1.json, - ../../src/database/initial_data_load/form_answers_MD_2021Q1.json, - ../../src/database/initial_data_load/form_answers_PA_2021Q1.json, - ../../src/database/initial_data_load/form_answers_AL_2020.json, - ../../src/database/initial_data_load/form_answers_MD_2020.json, - ../../src/database/initial_data_load/form_answers_PA_2020.json, - ] - - table: ${self:custom.stage}-auth-user - sources: [../../src/database/initial_data_load/auth_user.json] - - table: ${self:custom.stage}-auth-user-roles - sources: [../../src/database/initial_data_load/auth_user_roles.json] provider: name: aws @@ -135,8 +52,42 @@ provider: PROJECT: ${self:custom.project} SERVICE: ${self:service} versionFunctions: true + iam: + role: + path: ${self:custom.iamPath} + permissionsBoundary: + Fn::If: + - CreatePermissionsBoundary + - !Sub arn:aws:iam::${AWS::AccountId}:policy${self:custom.iamPermissionsBoundaryPolicy} + - !Ref AWS::NoValue + statements: + - Effect: "Allow" + Action: + - dynamodb:DescribeTable + - dynamodb:Query + - dynamodb:Scan + - dynamodb:GetItem + - dynamodb:PutItem + - dynamodb:UpdateItem + - dynamodb:DeleteItem + Resource: "*" +functions: + seed: + handler: handlers/seed/seed.handler + environment: + dynamoPrefix: ${self:custom.stage} + seedData: ${self:custom.seedData} + DYNAMODB_URL: ${self:custom.localDynamoEndpoint} + timeout: 120 resources: + Description: ${self:service} ${self:custom.stage} + Conditions: + CreatePermissionsBoundary: + Fn::Not: + - Fn::Equals: + - "" + - ${self:custom.iamPermissionsBoundaryPolicy} Resources: AgeRangesTable: Type: AWS::DynamoDB::Table diff --git a/services/database/scripts/utils/dynamodb.js b/services/database/utils/dynamodb.js similarity index 92% rename from services/database/scripts/utils/dynamodb.js rename to services/database/utils/dynamodb.js index 989521539..401d9684e 100644 --- a/services/database/scripts/utils/dynamodb.js +++ b/services/database/utils/dynamodb.js @@ -6,13 +6,9 @@ const { ScanCommand, } = require("@aws-sdk/lib-dynamodb"); -let dynamoClient; - const buildDynamoClient = () => { const dynamoConfig = { logger: { - debug: console.debug, - info: console.info, warn: console.warn, error: console.error, }, @@ -30,9 +26,11 @@ const buildDynamoClient = () => { } const bareBonesClient = new DynamoDBClient(dynamoConfig); - dynamoClient = DynamoDBDocumentClient.from(bareBonesClient); + return DynamoDBDocumentClient.from(bareBonesClient); }; +let dynamoClient = buildDynamoClient(); + const scan = async (scanParams) => { let ExclusiveStartKey; let items = []; @@ -60,7 +58,7 @@ const update = async (tableName, items) => { const command = new PutCommand(params); await dynamoClient.send(command); } - console.log(`Touched ${items.length} in table ${tableName}`) + console.log(`Touched ${items.length} in table ${tableName}`); } catch (e) { console.log(` -- ERROR UPLOADING ${tableName}\n`, e); } diff --git a/services/ui-src/package.json b/services/ui-src/package.json index 482722a18..138e186ac 100644 --- a/services/ui-src/package.json +++ b/services/ui-src/package.json @@ -4,7 +4,8 @@ "description": "", "resolutions": { "**/**/lodash": "^4.17.12", - "minimist": "^1.2.5" + "minimist": "^1.2.5", + "rollup": "^4.24.0" }, "version": "1.0.0", "dependencies": { diff --git a/services/ui-src/yarn.lock b/services/ui-src/yarn.lock index 0861e588c..9d35fcb99 100644 --- a/services/ui-src/yarn.lock +++ b/services/ui-src/yarn.lock @@ -4280,85 +4280,85 @@ redux-thunk "^2.4.2" reselect "^4.1.8" -"@rollup/rollup-android-arm-eabi@4.22.0": - version "4.22.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.22.0.tgz#e8c16c336f060b4cb592f62eb4f0e543d79d51fe" - integrity sha512-/IZQvg6ZR0tAkEi4tdXOraQoWeJy9gbQ/cx4I7k9dJaCk9qrXEcdouxRVz5kZXt5C2bQ9pILoAA+KB4C/d3pfw== - -"@rollup/rollup-android-arm64@4.22.0": - version "4.22.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.22.0.tgz#7a44160a14017fa744912d7037c7d81d6f8a46e7" - integrity sha512-ETHi4bxrYnvOtXeM7d4V4kZWixib2jddFacJjsOjwbgYSRsyXYtZHC4ht134OsslPIcnkqT+TKV4eU8rNBKyyQ== - -"@rollup/rollup-darwin-arm64@4.22.0": - version "4.22.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.22.0.tgz#6122dc37d4a09521d8abe18925956d3b46cfbac9" - integrity sha512-ZWgARzhSKE+gVUX7QWaECoRQsPwaD8ZR0Oxb3aUpzdErTvlEadfQpORPXkKSdKbFci9v8MJfkTtoEHnnW9Ulng== - -"@rollup/rollup-darwin-x64@4.22.0": - version "4.22.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.22.0.tgz#453f345899cbf544aa0d6f5808d24d2e42f605b7" - integrity sha512-h0ZAtOfHyio8Az6cwIGS+nHUfRMWBDO5jXB8PQCARVF6Na/G6XS2SFxDl8Oem+S5ZsHQgtsI7RT4JQnI1qrlaw== - -"@rollup/rollup-linux-arm-gnueabihf@4.22.0": - version "4.22.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.22.0.tgz#3a32fa4e80a62a6d733014838b1123fe76b060fe" - integrity sha512-9pxQJSPwFsVi0ttOmqLY4JJ9pg9t1gKhK0JDbV1yUEETSx55fdyCjt39eBQ54OQCzAF0nVGO6LfEH1KnCPvelA== - -"@rollup/rollup-linux-arm-musleabihf@4.22.0": - version "4.22.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.22.0.tgz#55d3953c54419e93efe124882a3103c8a2f65641" - integrity sha512-YJ5Ku5BmNJZb58A4qSEo3JlIG4d3G2lWyBi13ABlXzO41SsdnUKi3HQHe83VpwBVG4jHFTW65jOQb8qyoR+qzg== - -"@rollup/rollup-linux-arm64-gnu@4.22.0": - version "4.22.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.22.0.tgz#cd626963b9962baf8e09d792e67b87269a5bcfff" - integrity sha512-U4G4u7f+QCqHlVg1Nlx+qapZy+QoG+NV6ux+upo/T7arNGwKvKP2kmGM4W5QTbdewWFgudQxi3kDNST9GT1/mg== - -"@rollup/rollup-linux-arm64-musl@4.22.0": - version "4.22.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.22.0.tgz#ad209270c9937a27346fce5b0670cbdfb1e6a0a6" - integrity sha512-aQpNlKmx3amwkA3a5J6nlXSahE1ijl0L9KuIjVOUhfOh7uw2S4piR3mtpxpRtbnK809SBtyPsM9q15CPTsY7HQ== - -"@rollup/rollup-linux-powerpc64le-gnu@4.22.0": - version "4.22.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.22.0.tgz#fdd173929a5bba8b7e8b37314380213d9604088f" - integrity sha512-9fx6Zj/7vve/Fp4iexUFRKb5+RjLCff6YTRQl4CoDhdMfDoobWmhAxQWV3NfShMzQk1Q/iCnageFyGfqnsmeqQ== - -"@rollup/rollup-linux-riscv64-gnu@4.22.0": - version "4.22.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.22.0.tgz#90b11314fbf45d04083f658e08dc3b32fd713061" - integrity sha512-VWQiCcN7zBgZYLjndIEh5tamtnKg5TGxyZPWcN9zBtXBwfcGSZ5cHSdQZfQH/GB4uRxk0D3VYbOEe/chJhPGLQ== - -"@rollup/rollup-linux-s390x-gnu@4.22.0": - version "4.22.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.22.0.tgz#46bb2f1135aeec646b720d6032d7c86915f8b2ec" - integrity sha512-EHmPnPWvyYqncObwqrosb/CpH3GOjE76vWVs0g4hWsDRUVhg61hBmlVg5TPXqF+g+PvIbqkC7i3h8wbn4Gp2Fg== - -"@rollup/rollup-linux-x64-gnu@4.22.0": - version "4.22.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.22.0.tgz#d731a19af5f05eabcba871bda2eeb2fa8c8adb67" - integrity sha512-tsSWy3YQzmpjDKnQ1Vcpy3p9Z+kMFbSIesCdMNgLizDWFhrLZIoN21JSq01g+MZMDFF+Y1+4zxgrlqPjid5ohg== - -"@rollup/rollup-linux-x64-musl@4.22.0": - version "4.22.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.22.0.tgz#5438b2dc38fe467444cf769146098be083022d0f" - integrity sha512-anr1Y11uPOQrpuU8XOikY5lH4Qu94oS6j0xrulHk3NkLDq19MlX8Ng/pVipjxBJ9a2l3+F39REZYyWQFkZ4/fw== - -"@rollup/rollup-win32-arm64-msvc@4.22.0": - version "4.22.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.22.0.tgz#6bd66c198f80c8e7050cfd901701cfb9555d768a" - integrity sha512-7LB+Bh+Ut7cfmO0m244/asvtIGQr5pG5Rvjz/l1Rnz1kDzM02pSX9jPaS0p+90H5I1x4d1FkCew+B7MOnoatNw== - -"@rollup/rollup-win32-ia32-msvc@4.22.0": - version "4.22.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.22.0.tgz#58daea1f1e65143c44c8f3311f30ff8eefa62bae" - integrity sha512-+3qZ4rer7t/QsC5JwMpcvCVPRcJt1cJrYS/TMJZzXIJbxWFQEVhrIc26IhB+5Z9fT9umfVc+Es2mOZgl+7jdJQ== - -"@rollup/rollup-win32-x64-msvc@4.22.0": - version "4.22.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.22.0.tgz#956948629f6b87de0bdf526b28d940221540bbb6" - integrity sha512-YdicNOSJONVx/vuPkgPTyRoAPx3GbknBZRCOUkK84FJ/YTfs/F0vl/YsMscrB6Y177d+yDRcj+JWMPMCgshwrA== +"@rollup/rollup-android-arm-eabi@4.24.0": + version "4.24.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.24.0.tgz#1661ff5ea9beb362795304cb916049aba7ac9c54" + integrity sha512-Q6HJd7Y6xdB48x8ZNVDOqsbh2uByBhgK8PiQgPhwkIw/HC/YX5Ghq2mQY5sRMZWHb3VsFkWooUVOZHKr7DmDIA== + +"@rollup/rollup-android-arm64@4.24.0": + version "4.24.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.24.0.tgz#2ffaa91f1b55a0082b8a722525741aadcbd3971e" + integrity sha512-ijLnS1qFId8xhKjT81uBHuuJp2lU4x2yxa4ctFPtG+MqEE6+C5f/+X/bStmxapgmwLwiL3ih122xv8kVARNAZA== + +"@rollup/rollup-darwin-arm64@4.24.0": + version "4.24.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.24.0.tgz#627007221b24b8cc3063703eee0b9177edf49c1f" + integrity sha512-bIv+X9xeSs1XCk6DVvkO+S/z8/2AMt/2lMqdQbMrmVpgFvXlmde9mLcbQpztXm1tajC3raFDqegsH18HQPMYtA== + +"@rollup/rollup-darwin-x64@4.24.0": + version "4.24.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.24.0.tgz#0605506142b9e796c370d59c5984ae95b9758724" + integrity sha512-X6/nOwoFN7RT2svEQWUsW/5C/fYMBe4fnLK9DQk4SX4mgVBiTA9h64kjUYPvGQ0F/9xwJ5U5UfTbl6BEjaQdBQ== + +"@rollup/rollup-linux-arm-gnueabihf@4.24.0": + version "4.24.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.24.0.tgz#62dfd196d4b10c0c2db833897164d2d319ee0cbb" + integrity sha512-0KXvIJQMOImLCVCz9uvvdPgfyWo93aHHp8ui3FrtOP57svqrF/roSSR5pjqL2hcMp0ljeGlU4q9o/rQaAQ3AYA== + +"@rollup/rollup-linux-arm-musleabihf@4.24.0": + version "4.24.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.24.0.tgz#53ce72aeb982f1f34b58b380baafaf6a240fddb3" + integrity sha512-it2BW6kKFVh8xk/BnHfakEeoLPv8STIISekpoF+nBgWM4d55CZKc7T4Dx1pEbTnYm/xEKMgy1MNtYuoA8RFIWw== + +"@rollup/rollup-linux-arm64-gnu@4.24.0": + version "4.24.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.24.0.tgz#1632990f62a75c74f43e4b14ab3597d7ed416496" + integrity sha512-i0xTLXjqap2eRfulFVlSnM5dEbTVque/3Pi4g2y7cxrs7+a9De42z4XxKLYJ7+OhE3IgxvfQM7vQc43bwTgPwA== + +"@rollup/rollup-linux-arm64-musl@4.24.0": + version "4.24.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.24.0.tgz#8c03a996efb41e257b414b2e0560b7a21f2d9065" + integrity sha512-9E6MKUJhDuDh604Qco5yP/3qn3y7SLXYuiC0Rpr89aMScS2UAmK1wHP2b7KAa1nSjWJc/f/Lc0Wl1L47qjiyQw== + +"@rollup/rollup-linux-powerpc64le-gnu@4.24.0": + version "4.24.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.24.0.tgz#5b98729628d5bcc8f7f37b58b04d6845f85c7b5d" + integrity sha512-2XFFPJ2XMEiF5Zi2EBf4h73oR1V/lycirxZxHZNc93SqDN/IWhYYSYj8I9381ikUFXZrz2v7r2tOVk2NBwxrWw== + +"@rollup/rollup-linux-riscv64-gnu@4.24.0": + version "4.24.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.24.0.tgz#48e42e41f4cabf3573cfefcb448599c512e22983" + integrity sha512-M3Dg4hlwuntUCdzU7KjYqbbd+BLq3JMAOhCKdBE3TcMGMZbKkDdJ5ivNdehOssMCIokNHFOsv7DO4rlEOfyKpg== + +"@rollup/rollup-linux-s390x-gnu@4.24.0": + version "4.24.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.24.0.tgz#e0b4f9a966872cb7d3e21b9e412a4b7efd7f0b58" + integrity sha512-mjBaoo4ocxJppTorZVKWFpy1bfFj9FeCMJqzlMQGjpNPY9JwQi7OuS1axzNIk0nMX6jSgy6ZURDZ2w0QW6D56g== + +"@rollup/rollup-linux-x64-gnu@4.24.0": + version "4.24.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.24.0.tgz#78144741993100f47bd3da72fce215e077ae036b" + integrity sha512-ZXFk7M72R0YYFN5q13niV0B7G8/5dcQ9JDp8keJSfr3GoZeXEoMHP/HlvqROA3OMbMdfr19IjCeNAnPUG93b6A== + +"@rollup/rollup-linux-x64-musl@4.24.0": + version "4.24.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.24.0.tgz#d9fe32971883cd1bd858336bd33a1c3ca6146127" + integrity sha512-w1i+L7kAXZNdYl+vFvzSZy8Y1arS7vMgIy8wusXJzRrPyof5LAb02KGr1PD2EkRcl73kHulIID0M501lN+vobQ== + +"@rollup/rollup-win32-arm64-msvc@4.24.0": + version "4.24.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.24.0.tgz#71fa3ea369316db703a909c790743972e98afae5" + integrity sha512-VXBrnPWgBpVDCVY6XF3LEW0pOU51KbaHhccHw6AS6vBWIC60eqsH19DAeeObl+g8nKAz04QFdl/Cefta0xQtUQ== + +"@rollup/rollup-win32-ia32-msvc@4.24.0": + version "4.24.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.24.0.tgz#653f5989a60658e17d7576a3996deb3902e342e2" + integrity sha512-xrNcGDU0OxVcPTH/8n/ShH4UevZxKIO6HJFK0e15XItZP2UcaiLFd5kiX7hJnqCbSztUF8Qot+JWBC/QXRPYWQ== + +"@rollup/rollup-win32-x64-msvc@4.24.0": + version "4.24.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.24.0.tgz#0574d7e87b44ee8511d08cc7f914bcb802b70818" + integrity sha512-fbMkAF7fufku0N2dE5TBXcNlg0pt0cJue4xBRE2Qc5Vqikxr4VCgKj/ht6SMdFcOacVA9rqF70APJ8RN/4vMJw== "@sinclair/typebox@^0.27.8": version "0.27.8" @@ -4538,10 +4538,10 @@ resolved "https://registry.npmjs.org/@types/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz" integrity sha512-OCutwjDZ4aFS6PB1UZ988C4YgwlBHJd6wCeQqaLdmadZ/7e+w79+hbMUFC1QXDNCmdyoRfAFdm0RypzwR+Qpag== -"@types/estree@1.0.5": - version "1.0.5" - resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.5.tgz#a6ce3e556e00fd9895dd872dd172ad0d4bd687f4" - integrity sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw== +"@types/estree@1.0.6": + version "1.0.6" + resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.6.tgz#628effeeae2064a1b4e79f78e81d87b7e5fc7b50" + integrity sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw== "@types/graceful-fs@^4.1.2": version "4.1.6" @@ -10648,29 +10648,29 @@ rimraf@~2.2.8: resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.2.8.tgz#e439be2aaee327321952730f99a8929e4fc50582" integrity sha512-R5KMKHnPAQaZMqLOsyuyUmcIjSeDm+73eoqQpaXA7AZ22BL+6C+1mcUscgOsNd8WVlJuvlgAPsegcx7pjlV0Dg== -rollup@^4.20.0: - version "4.22.0" - resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.22.0.tgz#23cd9e4565a458587683accc34a054660c01f351" - integrity sha512-W21MUIFPZ4+O2Je/EU+GP3iz7PH4pVPUXSbEZdatQnxo29+3rsUjgrJmzuAZU24z7yRAnFN6ukxeAhZh/c7hzg== +rollup@^4.20.0, rollup@^4.24.0: + version "4.24.0" + resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.24.0.tgz#c14a3576f20622ea6a5c9cad7caca5e6e9555d05" + integrity sha512-DOmrlGSXNk1DM0ljiQA+i+o0rSLhtii1je5wgk60j49d1jHT5YYttBv1iWOnYSTG+fZZESUOSNiAl89SIet+Cg== dependencies: - "@types/estree" "1.0.5" + "@types/estree" "1.0.6" optionalDependencies: - "@rollup/rollup-android-arm-eabi" "4.22.0" - "@rollup/rollup-android-arm64" "4.22.0" - "@rollup/rollup-darwin-arm64" "4.22.0" - "@rollup/rollup-darwin-x64" "4.22.0" - "@rollup/rollup-linux-arm-gnueabihf" "4.22.0" - "@rollup/rollup-linux-arm-musleabihf" "4.22.0" - "@rollup/rollup-linux-arm64-gnu" "4.22.0" - "@rollup/rollup-linux-arm64-musl" "4.22.0" - "@rollup/rollup-linux-powerpc64le-gnu" "4.22.0" - "@rollup/rollup-linux-riscv64-gnu" "4.22.0" - "@rollup/rollup-linux-s390x-gnu" "4.22.0" - "@rollup/rollup-linux-x64-gnu" "4.22.0" - "@rollup/rollup-linux-x64-musl" "4.22.0" - "@rollup/rollup-win32-arm64-msvc" "4.22.0" - "@rollup/rollup-win32-ia32-msvc" "4.22.0" - "@rollup/rollup-win32-x64-msvc" "4.22.0" + "@rollup/rollup-android-arm-eabi" "4.24.0" + "@rollup/rollup-android-arm64" "4.24.0" + "@rollup/rollup-darwin-arm64" "4.24.0" + "@rollup/rollup-darwin-x64" "4.24.0" + "@rollup/rollup-linux-arm-gnueabihf" "4.24.0" + "@rollup/rollup-linux-arm-musleabihf" "4.24.0" + "@rollup/rollup-linux-arm64-gnu" "4.24.0" + "@rollup/rollup-linux-arm64-musl" "4.24.0" + "@rollup/rollup-linux-powerpc64le-gnu" "4.24.0" + "@rollup/rollup-linux-riscv64-gnu" "4.24.0" + "@rollup/rollup-linux-s390x-gnu" "4.24.0" + "@rollup/rollup-linux-x64-gnu" "4.24.0" + "@rollup/rollup-linux-x64-musl" "4.24.0" + "@rollup/rollup-win32-arm64-msvc" "4.24.0" + "@rollup/rollup-win32-ia32-msvc" "4.24.0" + "@rollup/rollup-win32-x64-msvc" "4.24.0" fsevents "~2.3.2" run-async@^2.4.0: diff --git a/src/database/initial_data_load/form_template_2019.json b/src/database/initial_data_load/form_template_2019.json deleted file mode 100644 index 0f0e18376..000000000 --- a/src/database/initial_data_load/form_template_2019.json +++ /dev/null @@ -1,2828 +0,0 @@ -{ - "year": 2019, - "template": [ - { - "question": "2019-21E-01", - "form_id": "1", - "form": "21E", - "year": 2019, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "label": "What is the unduplicated number of children &&&VARIABLE&&& ever enrolled during the quarter?", - "age_ranges": [ - { "key": "0000", "label": "Under Age 0" }, - { "key": "0001", "label": "Ages 0 - 1" }, - { "key": "0105", "label": "Ages 1 - 5" }, - { "key": "0612", "label": "Ages 6 - 12" }, - { "key": "1318", "label": "Ages 13 - 18" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2019-01-15T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2019-01-15T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2019-21E-02", - "form_id": "1", - "form": "21E", - "year": 2019, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "label": "What is the unduplicated number of new enrollees &&&VARIABLE&&& in the quarter?", - "age_ranges": [ - { "key": "0000", "label": "Under Age 0" }, - { "key": "0001", "label": "Ages 0 - 1" }, - { "key": "0105", "label": "Ages 1 - 5" }, - { "key": "0612", "label": "Ages 6 - 12" }, - { "key": "1318", "label": "Ages 13 - 18" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2019-01-15T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2019-01-15T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2019-21E-03", - "form_id": "1", - "form": "21E", - "year": 2019, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "label": "What is the unduplicated number of disenrollees &&&VARIABLE&&& in the quarter?", - "age_ranges": [ - { "key": "0000", "label": "Under Age 0" }, - { "key": "0001", "label": "Ages 0 - 1" }, - { "key": "0105", "label": "Ages 1 - 5" }, - { "key": "0612", "label": "Ages 6 - 12" }, - { "key": "1318", "label": "Ages 13 - 18" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2019-01-15T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2019-01-15T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2019-21E-04", - "form_id": "1", - "form": "21E", - "year": 2019, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "label": "What is the number of member-months of enrollment for children &&&VARIABLE&&& in the quarter?", - "age_ranges": [ - { "key": "0000", "label": "Under Age 0" }, - { "key": "0001", "label": "Ages 0 - 1" }, - { "key": "0105", "label": "Ages 1 - 5" }, - { "key": "0612", "label": "Ages 6 - 12" }, - { "key": "1318", "label": "Ages 13 - 18" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2019-01-15T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2019-01-15T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2019-21E-05", - "form_id": "1", - "form": "21E", - "year": 2019, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "label": "What is the average number of months of enrollment for children &&&VARIABLE&&& ever enrolled during the quarter?", - "readonly": true, - "comment": "Divide the entries in Question 4 by the entries in Question 1.", - "age_ranges": [ - { "key": "0000", "label": "Under Age 0" }, - { "key": "0001", "label": "Ages 0 - 1" }, - { "key": "0105", "label": "Ages 1 - 5" }, - { "key": "0612", "label": "Ages 6 - 12" }, - { "key": "1318", "label": "Ages 13 - 18" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": [ - { - "targets": [ - "$..[?(@.question=='2019-21E-04')].rows[1].col2", - "$..[?(@.question=='2019-21E-01')].rows[1].col2" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col3": [ - { - "targets": [ - "$..[?(@.question=='2019-21E-04')].rows[1].col3", - "$..[?(@.question=='2019-21E-01')].rows[1].col3" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col4": [ - { - "targets": [ - "$..[?(@.question=='2019-21E-04')].rows[1].col4", - "$..[?(@.question=='2019-21E-01')].rows[1].col4" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col5": [ - { - "targets": [ - "$..[?(@.question=='2019-21E-04')].rows[1].col5", - "$..[?(@.question=='2019-21E-01')].rows[1].col5" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col6": [ - { - "targets": [ - "$..[?(@.question=='2019-21E-04')].rows[1].col6", - "$..[?(@.question=='2019-21E-01')].rows[1].col6" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ] - }, - { - "col1": "B. Managed Care Arrangements", - "col2": [ - { - "targets": [ - "$..[?(@.question=='2019-21E-04')].rows[2].col2", - "$..[?(@.question=='2019-21E-01')].rows[2].col2" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col3": [ - { - "targets": [ - "$..[?(@.question=='2019-21E-04')].rows[2].col3", - "$..[?(@.question=='2019-21E-01')].rows[2].col3" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col4": [ - { - "targets": [ - "$..[?(@.question=='2019-21E-04')].rows[2].col4", - "$..[?(@.question=='2019-21E-01')].rows[2].col4" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col5": [ - { - "targets": [ - "$..[?(@.question=='2019-21E-04')].rows[2].col5", - "$..[?(@.question=='2019-21E-01')].rows[2].col5" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col6": [ - { - "targets": [ - "$..[?(@.question=='2019-21E-04')].rows[2].col6", - "$..[?(@.question=='2019-21E-01')].rows[2].col6" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ] - }, - { - "col1": "C. Primary Care Case Management", - "col2": [ - { - "targets": [ - "$..[?(@.question=='2019-21E-04')].rows[3].col2", - "$..[?(@.question=='2019-21E-01')].rows[3].col2" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col3": [ - { - "targets": [ - "$..[?(@.question=='2019-21E-04')].rows[3].col3", - "$..[?(@.question=='2019-21E-01')].rows[3].col3" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col4": [ - { - "targets": [ - "$..[?(@.question=='2019-21E-04')].rows[3].col4", - "$..[?(@.question=='2019-21E-01')].rows[3].col4" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col5": [ - { - "targets": [ - "$..[?(@.question=='2019-21E-04')].rows[3].col5", - "$..[?(@.question=='2019-21E-01')].rows[3].col5" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col6": [ - { - "targets": [ - "$..[?(@.question=='2019-21E-04')].rows[3].col6", - "$..[?(@.question=='2019-21E-01')].rows[3].col6" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ] - } - ], - "last_modified": "2019-01-15T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2019-01-15T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2019-21E-06", - "form_id": "1", - "form": "21E", - "year": 2019, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "label": "What is the number of children &&&VARIABLE&&& enrolled at the end of the quarter?", - "age_ranges": [ - { "key": "0000", "label": "Under Age 0" }, - { "key": "0001", "label": "Ages 0 - 1" }, - { "key": "0105", "label": "Ages 1 - 5" }, - { "key": "0612", "label": "Ages 6 - 12" }, - { "key": "1318", "label": "Ages 13 - 18" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2019-01-15T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2019-01-15T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2019-21E-07", - "form_id": "1", - "form": "21E", - "year": 2019, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "context_data": { - "show_if_quarter_in": ["4"] - }, - "label": "What is the unduplicated number of children &&&VARIABLE&&& ever enrolled during the year?", - "age_ranges": [ - { "key": "0000", "label": "Under Age 0" }, - { "key": "0001", "label": "Ages 0 - 1" }, - { "key": "0105", "label": "Ages 1 - 5" }, - { "key": "0612", "label": "Ages 6 - 12" }, - { "key": "1318", "label": "Ages 13 - 18" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2019-01-15T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2019-01-15T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2019-21E-08", - "form_id": "1", - "form": "21E", - "year": 2019, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "context_data": { - "show_if_quarter_in": ["4"] - }, - "label": "What is the unduplicated number of new enrollees &&&VARIABLE&&& during the year?", - "age_ranges": [ - { "key": "0000", "label": "Under Age 0" }, - { "key": "0001", "label": "Ages 0 - 1" }, - { "key": "0105", "label": "Ages 1 - 5" }, - { "key": "0612", "label": "Ages 6 - 12" }, - { "key": "1318", "label": "Ages 13 - 18" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2019-01-15T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2019-01-15T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2019-21E-09", - "form_id": "1", - "form": "21E", - "year": 2019, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "context_data": { - "show_if_quarter_in": ["4"] - }, - "label": "What is the unduplicated number of disenrollees &&&VARIABLE&&& during the year?", - "age_ranges": [ - { "key": "0000", "label": "Under Age 0" }, - { "key": "0001", "label": "Ages 0 - 1" }, - { "key": "0105", "label": "Ages 1 - 5" }, - { "key": "0612", "label": "Ages 6 - 12" }, - { "key": "1318", "label": "Ages 13 - 18" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2019-01-15T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2019-01-15T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2019-21PW-01", - "form_id": "6", - "form": "21PW", - "year": 2019, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "label": "What is the unduplicated number of pregnant women ever enrolled during the quarter?", - "age_ranges": [ - { "key": "1964", "label": "Age 19 years through age 64 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2019-10-01T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2019-10-01T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2019-21PW-02", - "form_id": "6", - "form": "21PW", - "year": 2019, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "label": "What is the unduplicated number of new enrollees in the quarter?", - "age_ranges": [ - { "key": "1964", "label": "Age 19 years through age 64 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2019-10-01T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2019-10-01T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2019-21PW-03", - "form_id": "6", - "form": "21PW", - "year": 2019, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "label": "What is the unduplicated number of disenrollees in the quarter?", - "age_ranges": [ - { "key": "1964", "label": "Age 19 years through age 64 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2019-10-01T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2019-10-01T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2019-21PW-04", - "form_id": "6", - "form": "21PW", - "year": 2019, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "label": "What is the number of member-months of enrollment for pregnant women in the quarter?", - "age_ranges": [ - { "key": "1964", "label": "Age 19 years through age 64 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2019-10-01T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2019-10-01T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2019-21PW-05", - "form_id": "6", - "form": "21PW", - "year": 2019, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "label": "What is the average number of months of enrollment for pregnant women ever enrolled during the quarter?", - "readonly": true, - "comment": "Divide the entries in Question 4 by the entries in Question 1.", - "age_ranges": [ - { "key": "1964", "label": "Age 19 years through age 64 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301" - }, - { - "col1": "A. Fee-for-Service", - "col2": [ - { - "targets": [ - "$..[?(@.question=='2019-21PW-04')].rows[1].col2", - "$..[?(@.question=='2019-21PW-01')].rows[1].col2" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col3": [ - { - "targets": [ - "$..[?(@.question=='2019-21PW-04')].rows[1].col3", - "$..[?(@.question=='2019-21PW-01')].rows[1].col3" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col4": [ - { - "targets": [ - "$..[?(@.question=='2019-21PW-04')].rows[1].col4", - "$..[?(@.question=='2019-21PW-01')].rows[1].col4" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col5": [ - { - "targets": [ - "$..[?(@.question=='2019-21PW-04')].rows[1].col5", - "$..[?(@.question=='2019-21PW-01')].rows[1].col5" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col6": [ - { - "targets": [ - "$..[?(@.question=='2019-21PW-04')].rows[1].col6", - "$..[?(@.question=='2019-21PW-01')].rows[1].col6" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ] - }, - { - "col1": "B. Managed Care Arrangements", - "col2": [ - { - "targets": [ - "$..[?(@.question=='2019-21PW-04')].rows[2].col2", - "$..[?(@.question=='2019-21PW-01')].rows[2].col2" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col3": [ - { - "targets": [ - "$..[?(@.question=='2019-21PW-04')].rows[2].col3", - "$..[?(@.question=='2019-21PW-01')].rows[2].col3" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col4": [ - { - "targets": [ - "$..[?(@.question=='2019-21PW-04')].rows[2].col4", - "$..[?(@.question=='2019-21PW-01')].rows[2].col4" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col5": [ - { - "targets": [ - "$..[?(@.question=='2019-21PW-04')].rows[2].col5", - "$..[?(@.question=='2019-21PW-01')].rows[2].col5" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col6": [ - { - "targets": [ - "$..[?(@.question=='2019-21PW-04')].rows[2].col6", - "$..[?(@.question=='2019-21PW-01')].rows[2].col6" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ] - }, - { - "col1": "C. Primary Care Case Management", - "col2": [ - { - "targets": [ - "$..[?(@.question=='2019-21PW-04')].rows[3].col2", - "$..[?(@.question=='2019-21PW-01')].rows[3].col2" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col3": [ - { - "targets": [ - "$..[?(@.question=='2019-21PW-04')].rows[3].col3", - "$..[?(@.question=='2019-21PW-01')].rows[3].col3" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col4": [ - { - "targets": [ - "$..[?(@.question=='2019-21PW-04')].rows[3].col4", - "$..[?(@.question=='2019-21PW-01')].rows[3].col4" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col5": [ - { - "targets": [ - "$..[?(@.question=='2019-21PW-04')].rows[3].col5", - "$..[?(@.question=='2019-21PW-01')].rows[3].col5" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col6": [ - { - "targets": [ - "$..[?(@.question=='2019-21PW-04')].rows[3].col6", - "$..[?(@.question=='2019-21PW-01')].rows[3].col6" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ] - } - ], - "last_modified": "2019-10-01T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2019-10-01T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2019-21PW-06", - "form_id": "6", - "form": "21PW", - "year": 2019, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "label": "What is the number of pregnant women enrolled at the end of the quarter?", - "age_ranges": [ - { "key": "1964", "label": "Age 19 years through age 64 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2019-10-01T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2019-10-01T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2019-21PW-07", - "form_id": "6", - "form": "21PW", - "year": 2019, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "context_data": { - "show_if_quarter_in": ["4"] - }, - "label": "What is the unduplicated number of pregnant women ever enrolled during the year?", - "age_ranges": [ - { "key": "1964", "label": "Age 19 years through age 64 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2019-10-01T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2019-10-01T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2019-21PW-08", - "form_id": "6", - "form": "21PW", - "year": 2019, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "context_data": { - "show_if_quarter_in": ["4"] - }, - "label": "What is the unduplicated number of new enrollees during the year?", - "age_ranges": [ - { "key": "1964", "label": "Age 19 years through age 64 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2019-10-01T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2019-10-01T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2019-21PW-09", - "form_id": "6", - "form": "21PW", - "year": 2019, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "context_data": { - "show_if_quarter_in": ["4"] - }, - "label": "What is the unduplicated number of disenrollees during the year?", - "age_ranges": [ - { "key": "1964", "label": "Age 19 years through age 64 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2019-10-01T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2019-10-01T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2019-64.21E-01", - "form_id": "3", - "form": "64.21E", - "year": 2019, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "label": "What is the unduplicated number of children &&&VARIABLE&&& ever enrolled during the quarter?", - "age_ranges": [ - { "key": "0001", "label": "Birth through age 12 months" }, - { "key": "0105", "label": "Age 1 year through age 5 years" }, - { "key": "0612", "label": "Age 6 years through age 12 years" }, - { "key": "1318", "label": "Age 13 years through age 18 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2019-01-15T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2019-01-15T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2019-64.21E-02", - "form_id": "3", - "form": "64.21E", - "year": 2019, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "label": "What is the unduplicated number of new enrollees &&&VARIABLE&&& in the quarter?", - "age_ranges": [ - { "key": "0001", "label": "Birth through age 12 months" }, - { "key": "0105", "label": "Age 1 year through age 5 years" }, - { "key": "0612", "label": "Age 6 years through age 12 years" }, - { "key": "1318", "label": "Age 13 years through age 18 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2019-01-15T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2019-01-15T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2019-64.21E-03", - "form_id": "3", - "form": "64.21E", - "year": 2019, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "label": "What is the unduplicated number of disenrollees &&&VARIABLE&&& in the quarter?", - "age_ranges": [ - { "key": "0001", "label": "Birth through age 12 months" }, - { "key": "0105", "label": "Age 1 year through age 5 years" }, - { "key": "0612", "label": "Age 6 years through age 12 years" }, - { "key": "1318", "label": "Age 13 years through age 18 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2019-01-15T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2019-01-15T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2019-64.21E-04", - "form_id": "3", - "form": "64.21E", - "year": 2019, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "label": "What is the number of member-months of enrollment for children &&&VARIABLE&&& in the quarter?", - "age_ranges": [ - { "key": "0001", "label": "Birth through age 12 months" }, - { "key": "0105", "label": "Age 1 year through age 5 years" }, - { "key": "0612", "label": "Age 6 years through age 12 years" }, - { "key": "1318", "label": "Age 13 years through age 18 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2019-01-15T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2019-01-15T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2019-64.21E-05", - "form_id": "3", - "form": "64.21E", - "year": 2019, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "label": "What is the average number of months of enrollment for children &&&VARIABLE&&& ever enrolled during the quarter?", - "readonly": true, - "comment": "Divide the entries in Question 4 by the entries in Question 1.", - "age_ranges": [ - { "key": "0001", "label": "Birth through age 12 months" }, - { "key": "0105", "label": "Age 1 year through age 5 years" }, - { "key": "0612", "label": "Age 6 years through age 12 years" }, - { "key": "1318", "label": "Age 13 years through age 18 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": [ - { - "targets": [ - "$..[?(@.question=='2019-64.21E-04')].rows[1].col2", - "$..[?(@.question=='2019-64.21E-01')].rows[1].col2" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col3": [ - { - "targets": [ - "$..[?(@.question=='2019-64.21E-04')].rows[1].col3", - "$..[?(@.question=='2019-64.21E-01')].rows[1].col3" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col4": [ - { - "targets": [ - "$..[?(@.question=='2019-64.21E-04')].rows[1].col4", - "$..[?(@.question=='2019-64.21E-01')].rows[1].col4" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col5": [ - { - "targets": [ - "$..[?(@.question=='2019-64.21E-04')].rows[1].col5", - "$..[?(@.question=='2019-64.21E-01')].rows[1].col5" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col6": [ - { - "targets": [ - "$..[?(@.question=='2019-64.21E-04')].rows[1].col6", - "$..[?(@.question=='2019-64.21E-01')].rows[1].col6" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ] - }, - { - "col1": "B. Managed Care Arrangements", - "col2": [ - { - "targets": [ - "$..[?(@.question=='2019-64.21E-04')].rows[2].col2", - "$..[?(@.question=='2019-64.21E-01')].rows[2].col2" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col3": [ - { - "targets": [ - "$..[?(@.question=='2019-64.21E-04')].rows[2].col3", - "$..[?(@.question=='2019-64.21E-01')].rows[2].col3" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col4": [ - { - "targets": [ - "$..[?(@.question=='2019-64.21E-04')].rows[2].col4", - "$..[?(@.question=='2019-64.21E-01')].rows[2].col4" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col5": [ - { - "targets": [ - "$..[?(@.question=='2019-64.21E-04')].rows[2].col5", - "$..[?(@.question=='2019-64.21E-01')].rows[2].col5" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col6": [ - { - "targets": [ - "$..[?(@.question=='2019-64.21E-04')].rows[2].col6", - "$..[?(@.question=='2019-64.21E-01')].rows[2].col6" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ] - }, - { - "col1": "C. Primary Care Case Management", - "col2": [ - { - "targets": [ - "$..[?(@.question=='2019-64.21E-04')].rows[3].col2", - "$..[?(@.question=='2019-64.21E-01')].rows[3].col2" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col3": [ - { - "targets": [ - "$..[?(@.question=='2019-64.21E-04')].rows[3].col3", - "$..[?(@.question=='2019-64.21E-01')].rows[3].col3" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col4": [ - { - "targets": [ - "$..[?(@.question=='2019-64.21E-04')].rows[3].col4", - "$..[?(@.question=='2019-64.21E-01')].rows[3].col4" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col5": [ - { - "targets": [ - "$..[?(@.question=='2019-64.21E-04')].rows[3].col5", - "$..[?(@.question=='2019-64.21E-01')].rows[3].col5" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col6": [ - { - "targets": [ - "$..[?(@.question=='2019-64.21E-04')].rows[3].col6", - "$..[?(@.question=='2019-64.21E-01')].rows[3].col6" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ] - } - ], - "last_modified": "2019-01-15T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2019-01-15T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2019-64.21E-06", - "form_id": "3", - "form": "64.21E", - "year": 2019, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "label": "What is the number of children &&&VARIABLE&&& enrolled at the end of the quarter?", - "age_ranges": [ - { "key": "0001", "label": "Birth through age 12 months" }, - { "key": "0105", "label": "Age 1 year through age 5 years" }, - { "key": "0612", "label": "Age 6 years through age 12 years" }, - { "key": "1318", "label": "Age 13 years through age 18 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2019-01-15T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2019-01-15T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2019-64.21E-07", - "form_id": "3", - "form": "64.21E", - "year": 2019, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "context_data": { - "show_if_quarter_in": ["4"] - }, - "label": "What is the unduplicated number of children &&&VARIABLE&&& ever enrolled during the year?", - "age_ranges": [ - { "key": "0001", "label": "Birth through age 12 months" }, - { "key": "0105", "label": "Age 1 year through age 5 years" }, - { "key": "0612", "label": "Age 6 years through age 12 years" }, - { "key": "1318", "label": "Age 13 years through age 18 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2019-01-15T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2019-01-15T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2019-64.21E-08", - "form_id": "3", - "form": "64.21E", - "year": 2019, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "context_data": { - "show_if_quarter_in": ["4"] - }, - "label": "What is the unduplicated number of new enrollees &&&VARIABLE&&& during the year?", - "age_ranges": [ - { "key": "0001", "label": "Birth through age 12 months" }, - { "key": "0105", "label": "Age 1 year through age 5 years" }, - { "key": "0612", "label": "Age 6 years through age 12 years" }, - { "key": "1318", "label": "Age 13 years through age 18 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2019-01-15T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2019-01-15T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2019-64.21E-09", - "form_id": "3", - "form": "64.21E", - "year": 2019, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "context_data": { - "show_if_quarter_in": ["4"] - }, - "label": "What is the unduplicated number of disenrollees &&&VARIABLE&&& during the year?", - "age_ranges": [ - { "key": "0001", "label": "Birth through age 12 months" }, - { "key": "0105", "label": "Age 1 year through age 5 years" }, - { "key": "0612", "label": "Age 6 years through age 12 years" }, - { "key": "1318", "label": "Age 13 years through age 18 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2019-01-15T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2019-01-15T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2019-64.EC-01", - "form": "64.EC", - "year": 2019, - "type": "datagridwithtotals", - "rowTotal": true, - "columnTotal": true, - "label": "What is the unduplicated number of children &&&VARIABLE&&& ever enrolled during the quarter?", - "age_ranges": [ - { "key": "0001", "label": "Birth through age 12 months" }, - { "key": "0105", "label": "Age 1 year through age 5 years" }, - { "key": "0612", "label": "Age 6 years through age 12 years" }, - { "key": "1318", "label": "Age 13 years through age 18 years" }, - { "key": "1920", "label": "Age 19 years through age 20 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "lastModified": "2019-01-15T12:46:35.838Z", - "lastModifiedBY": "seed", - "createdDate": "2019-01-15T12:46:35.838Z", - "createdBY": "seed" - }, - { - "question": "2019-64.EC-02", - "form": "64.EC", - "year": 2019, - "type": "datagridwithtotals", - "rowTotal": true, - "columnTotal": true, - "label": "What is the unduplicated number of new enrollees &&&VARIABLE&&& in the quarter?", - "age_ranges": [ - { "key": "0001", "label": "Birth through age 12 months" }, - { "key": "0105", "label": "Age 1 year through age 5 years" }, - { "key": "0612", "label": "Age 6 years through age 12 years" }, - { "key": "1318", "label": "Age 13 years through age 18 years" }, - { "key": "1920", "label": "Age 19 years through age 20 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "lastModified": "2019-01-15T12:46:35.838Z", - "lastModifiedBY": "seed", - "createdDate": "2019-01-15T12:46:35.838Z", - "createdBY": "seed" - }, - { - "question": "2019-64.EC-03", - "form": "64.EC", - "year": 2019, - "type": "datagridwithtotals", - "rowTotal": true, - "columnTotal": true, - "label": "What is the unduplicated number of disenrollees &&&VARIABLE&&& in the quarter?", - "age_ranges": [ - { "key": "0001", "label": "Birth through age 12 months" }, - { "key": "0105", "label": "Age 1 year through age 5 years" }, - { "key": "0612", "label": "Age 6 years through age 12 years" }, - { "key": "1318", "label": "Age 13 years through age 18 years" }, - { "key": "1920", "label": "Age 19 years through age 20 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "lastModified": "2019-01-15T12:46:35.838Z", - "lastModifiedBY": "seed", - "createdDate": "2019-01-15T12:46:35.838Z", - "createdBY": "seed" - }, - { - "question": "2019-64.EC-04", - "form": "64.EC", - "year": 2019, - "type": "datagridwithtotals", - "rowTotal": true, - "columnTotal": true, - "label": "What is the number of member-months of enrollment for children &&&VARIABLE&&& in the quarter?", - "age_ranges": [ - { "key": "0001", "label": "Birth through age 12 months" }, - { "key": "0105", "label": "Age 1 year through age 5 years" }, - { "key": "0612", "label": "Age 6 years through age 12 years" }, - { "key": "1318", "label": "Age 13 years through age 18 years" }, - { "key": "1920", "label": "Age 19 years through age 20 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "lastModified": "2019-01-15T12:46:35.838Z", - "lastModifiedBY": "seed", - "createdDate": "2019-01-15T12:46:35.838Z", - "createdBY": "seed" - }, - { - "question": "2019-64.EC-05", - "form": "64.EC", - "year": 2019, - "type": "datagridwithtotals", - "rowTotal": true, - "columnTotal": true, - "label": "What is the average number of months of enrollment for children &&&VARIABLE&&& ever enrolled during the quarter?", - "readonly": true, - "comment": "Divide the entries in Question 4 by the entries in Question 1.", - "age_ranges": [ - { "key": "0001", "label": "Birth through age 12 months" }, - { "key": "0105", "label": "Age 1 year through age 5 years" }, - { "key": "0612", "label": "Age 6 years through age 12 years" }, - { "key": "1318", "label": "Age 13 years through age 18 years" }, - { "key": "1920", "label": "Age 19 years through age 20 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": [ - { - "targets": [ - "$..[?(@.question=='2019-64.EC-04')].rows[1].col2", - "$..[?(@.question=='2019-64.EC-01')].rows[1].col2" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col3": [ - { - "targets": [ - "$..[?(@.question=='2019-64.EC-04')].rows[1].col3", - "$..[?(@.question=='2019-64.EC-01')].rows[1].col3" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col4": [ - { - "targets": [ - "$..[?(@.question=='2019-64.EC-04')].rows[1].col4", - "$..[?(@.question=='2019-64.EC-01')].rows[1].col4" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col5": [ - { - "targets": [ - "$..[?(@.question=='2019-64.EC-04')].rows[1].col5", - "$..[?(@.question=='2019-64.EC-01')].rows[1].col5" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col6": [ - { - "targets": [ - "$..[?(@.question=='2019-64.EC-04')].rows[1].col6", - "$..[?(@.question=='2019-64.EC-01')].rows[1].col6" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ] - }, - { - "col1": "B. Managed Care Arrangements", - "col2": [ - { - "targets": [ - "$..[?(@.question=='2019-64.EC-04')].rows[2].col2", - "$..[?(@.question=='2019-64.EC-01')].rows[2].col2" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col3": [ - { - "targets": [ - "$..[?(@.question=='2019-64.EC-04')].rows[2].col3", - "$..[?(@.question=='2019-64.EC-01')].rows[2].col3" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col4": [ - { - "targets": [ - "$..[?(@.question=='2019-64.EC-04')].rows[2].col4", - "$..[?(@.question=='2019-64.EC-01')].rows[2].col4" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col5": [ - { - "targets": [ - "$..[?(@.question=='2019-64.EC-04')].rows[2].col5", - "$..[?(@.question=='2019-64.EC-01')].rows[2].col5" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col6": [ - { - "targets": [ - "$..[?(@.question=='2019-64.EC-04')].rows[2].col6", - "$..[?(@.question=='2019-64.EC-01')].rows[2].col6" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ] - }, - { - "col1": "C. Primary Care Case Management", - "col2": [ - { - "targets": [ - "$..[?(@.question=='2019-64.EC-04')].rows[3].col2", - "$..[?(@.question=='2019-64.EC-01')].rows[3].col2" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col3": [ - { - "targets": [ - "$..[?(@.question=='2019-64.EC-04')].rows[3].col3", - "$..[?(@.question=='2019-64.EC-01')].rows[3].col3" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col4": [ - { - "targets": [ - "$..[?(@.question=='2019-64.EC-04')].rows[3].col4", - "$..[?(@.question=='2019-64.EC-01')].rows[3].col4" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col5": [ - { - "targets": [ - "$..[?(@.question=='2019-64.EC-04')].rows[3].col5", - "$..[?(@.question=='2019-64.EC-01')].rows[3].col5" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col6": [ - { - "targets": [ - "$..[?(@.question=='2019-64.EC-04')].rows[3].col6", - "$..[?(@.question=='2019-64.EC-01')].rows[3].col6" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ] - } - ], - "lastModified": "2019-01-15T12:46:35.838Z", - "lastModifiedBY": "seed", - "createdDate": "2019-01-15T12:46:35.838Z", - "createdBY": "seed" - }, - { - "question": "2019-64.EC-06", - "form": "64.EC", - "year": 2019, - "type": "datagridwithtotals", - "rowTotal": true, - "columnTotal": true, - "label": "What is the number of children &&&VARIABLE&&& enrolled at the end of the quarter?", - "age_ranges": [ - { "key": "0001", "label": "Birth through age 12 months" }, - { "key": "0105", "label": "Age 1 year through age 5 years" }, - { "key": "0612", "label": "Age 6 years through age 12 years" }, - { "key": "1318", "label": "Age 13 years through age 18 years" }, - { "key": "1920", "label": "Age 19 years through age 20 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "lastModified": "2019-01-15T12:46:35.838Z", - "lastModifiedBY": "seed", - "createdDate": "2019-01-15T12:46:35.838Z", - "createdBY": "seed" - }, - { - "question": "2019-64.EC-07", - "form": "64.EC", - "year": 2019, - "type": "datagridwithtotals", - "rowTotal": true, - "columnTotal": true, - "context_data": { - "show_if_quarter_in": ["4"] - }, - "label": "What is the unduplicated number of children &&&VARIABLE&&& ever enrolled during the year?", - "age_ranges": [ - { "key": "0001", "label": "Birth through age 12 months" }, - { "key": "0105", "label": "Age 1 year through age 5 years" }, - { "key": "0612", "label": "Age 6 years through age 12 years" }, - { "key": "1318", "label": "Age 13 years through age 18 years" }, - { "key": "1920", "label": "Age 19 years through age 20 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "lastModified": "2019-01-15T12:46:35.838Z", - "lastModifiedBY": "seed", - "createdDate": "2019-01-15T12:46:35.838Z", - "createdBY": "seed" - }, - { - "question": "2019-64.EC-08", - "form": "64.EC", - "year": 2019, - "type": "datagridwithtotals", - "rowTotal": true, - "columnTotal": true, - "context_data": { - "show_if_quarter_in": ["4"] - }, - "label": "What is the unduplicated number of new enrollees &&&VARIABLE&&& during the year?", - "age_ranges": [ - { "key": "0001", "label": "Birth through age 12 months" }, - { "key": "0105", "label": "Age 1 year through age 5 years" }, - { "key": "0612", "label": "Age 6 years through age 12 years" }, - { "key": "1318", "label": "Age 13 years through age 18 years" }, - { "key": "1920", "label": "Age 19 years through age 20 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "lastModified": "2019-01-15T12:46:35.838Z", - "lastModifiedBY": "seed", - "createdDate": "2019-01-15T12:46:35.838Z", - "createdBY": "seed" - }, - { - "question": "2019-64.EC-09", - "form": "64.EC", - "year": 2019, - "type": "datagridwithtotals", - "rowTotal": true, - "columnTotal": true, - "context_data": { - "show_if_quarter_in": ["4"] - }, - "label": "What is the unduplicated number of disenrollees &&&VARIABLE&&& during the year?", - "age_ranges": [ - { "key": "0001", "label": "Birth through age 12 months" }, - { "key": "0105", "label": "Age 1 year through age 5 years" }, - { "key": "0612", "label": "Age 6 years through age 12 years" }, - { "key": "1318", "label": "Age 13 years through age 18 years" }, - { "key": "1920", "label": "Age 19 years through age 20 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "lastModified": "2019-01-15T12:46:35.838Z", - "lastModifiedBY": "seed", - "createdDate": "2019-01-15T12:46:35.838Z", - "createdBY": "seed" - }, - { - "question": "2019-GRE-01", - "form_id": "5", - "form": "GRE", - "year": 2019, - "type": "gregridwithtotals", - "row_total": true, - "column_total": true, - "label": "What is the number of enrollees by gender?", - "age_ranges": [ - { "key": "0018", "label": "Conception through age 18 years" } - ], - "rows": [ - { - "col1": "", - "col2": "21E Enrolled", - "col3": "64.21E Enrolled", - "col4": "Total CHIP Enrolled", - "col5": "64.EC Enrolled", - "col6": "21PW Enrolled" - }, - { - "col1": "1. Female", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "2. Male", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "3. Unspecified Gender", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2019-10-01T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2019-10-01T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2019-GRE-02", - "form_id": "5", - "form": "GRE", - "year": 2019, - "type": "gregridwithtotals", - "row_total": true, - "column_total": true, - "label": "What is the number of enrollees by race?", - "age_ranges": [ - { "key": "0018", "label": "Conception through age 18 years" } - ], - "rows": [ - { - "col1": "", - "col2": "21E Enrolled", - "col3": "64.21E Enrolled", - "col4": "Total CHIP Enrolled", - "col5": "64.EC Enrolled", - "col6": "21PW Enrolled" - }, - { - "col1": "1. White", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "2. Black or African American", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "3. American Indian or Alaska Native", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "4. Asian Indian", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "5. Chinese", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "6. Filipino", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "7. Japanese", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "8. Korean", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "9. Vietnamese", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "10. Other Asian", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "11. Asian Unknown", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "12. Native Hawaiian", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "13. Guamanian or Chamorro", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "14. Samoan", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "15. Other Pacific Islander", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "16. Native Hawaiian or Other Pacific Islander Unknown", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "17. Some other race", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "18. Two or more races (regardless of ethnicity)", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "19. Unspecified Race", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2019-10-01T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2019-10-01T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2019-GRE-03", - "form_id": "5", - "form": "GRE", - "year": 2019, - "type": "gregridwithtotals", - "row_total": true, - "column_total": true, - "label": "What is the number of enrollees by ethnicity?", - "age_ranges": [ - { "key": "0018", "label": "Conception through age 18 years" } - ], - "rows": [ - { - "col1": "", - "col2": "21E Enrolled", - "col3": "64.21E Enrolled", - "col4": "Total CHIP Enrolled", - "col5": "64.EC Enrolled", - "col6": "21PW Enrolled" - }, - { - "col1": "1. Not of Hispanic, Latino/a, or Spanish origin", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "2. Mexican, Mexican American, Chicano/a", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "3. Puerto Rican", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "4. Cuban", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "5. Another Hispanic, Latino, or Spanish Origin", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "6. Hispanic or Latino Unknown", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "7. Unspecified Ethnicity", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2019-10-01T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2019-10-01T12:46:35.838Z", - "created_by": "seed" - } - ] -} diff --git a/src/database/initial_data_load/form_template_2020.json b/src/database/initial_data_load/form_template_2020.json deleted file mode 100644 index 4739088ea..000000000 --- a/src/database/initial_data_load/form_template_2020.json +++ /dev/null @@ -1,2828 +0,0 @@ -{ - "year": 2020, - "template": [ - { - "question": "2020-21E-01", - "form_id": "1", - "form": "21E", - "year": 2020, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "label": "What is the unduplicated number of children &&&VARIABLE&&& ever enrolled during the quarter?", - "age_ranges": [ - { "key": "0000", "label": "Under Age 0" }, - { "key": "0001", "label": "Ages 0 - 1" }, - { "key": "0105", "label": "Ages 1 - 5" }, - { "key": "0612", "label": "Ages 6 - 12" }, - { "key": "1318", "label": "Ages 13 - 18" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2020-01-15T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2020-01-15T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2020-21E-02", - "form_id": "1", - "form": "21E", - "year": 2020, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "label": "What is the unduplicated number of new enrollees &&&VARIABLE&&& in the quarter?", - "age_ranges": [ - { "key": "0000", "label": "Under Age 0" }, - { "key": "0001", "label": "Ages 0 - 1" }, - { "key": "0105", "label": "Ages 1 - 5" }, - { "key": "0612", "label": "Ages 6 - 12" }, - { "key": "1318", "label": "Ages 13 - 18" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2020-01-15T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2020-01-15T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2020-21E-03", - "form_id": "1", - "form": "21E", - "year": 2020, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "label": "What is the unduplicated number of disenrollees &&&VARIABLE&&& in the quarter?", - "age_ranges": [ - { "key": "0000", "label": "Under Age 0" }, - { "key": "0001", "label": "Ages 0 - 1" }, - { "key": "0105", "label": "Ages 1 - 5" }, - { "key": "0612", "label": "Ages 6 - 12" }, - { "key": "1318", "label": "Ages 13 - 18" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2020-01-15T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2020-01-15T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2020-21E-04", - "form_id": "1", - "form": "21E", - "year": 2020, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "label": "What is the number of member-months of enrollment for children &&&VARIABLE&&& in the quarter?", - "age_ranges": [ - { "key": "0000", "label": "Under Age 0" }, - { "key": "0001", "label": "Ages 0 - 1" }, - { "key": "0105", "label": "Ages 1 - 5" }, - { "key": "0612", "label": "Ages 6 - 12" }, - { "key": "1318", "label": "Ages 13 - 18" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2020-01-15T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2020-01-15T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2020-21E-05", - "form_id": "1", - "form": "21E", - "year": 2020, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "label": "What is the average number of months of enrollment for children &&&VARIABLE&&& ever enrolled during the quarter?", - "readonly": true, - "comment": "Divide the entries in Question 4 by the entries in Question 1.", - "age_ranges": [ - { "key": "0000", "label": "Under Age 0" }, - { "key": "0001", "label": "Ages 0 - 1" }, - { "key": "0105", "label": "Ages 1 - 5" }, - { "key": "0612", "label": "Ages 6 - 12" }, - { "key": "1318", "label": "Ages 13 - 18" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": [ - { - "targets": [ - "$..[?(@.question=='2020-21E-04')].rows[1].col2", - "$..[?(@.question=='2020-21E-01')].rows[1].col2" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col3": [ - { - "targets": [ - "$..[?(@.question=='2020-21E-04')].rows[1].col3", - "$..[?(@.question=='2020-21E-01')].rows[1].col3" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col4": [ - { - "targets": [ - "$..[?(@.question=='2020-21E-04')].rows[1].col4", - "$..[?(@.question=='2020-21E-01')].rows[1].col4" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col5": [ - { - "targets": [ - "$..[?(@.question=='2020-21E-04')].rows[1].col5", - "$..[?(@.question=='2020-21E-01')].rows[1].col5" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col6": [ - { - "targets": [ - "$..[?(@.question=='2020-21E-04')].rows[1].col6", - "$..[?(@.question=='2020-21E-01')].rows[1].col6" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ] - }, - { - "col1": "B. Managed Care Arrangements", - "col2": [ - { - "targets": [ - "$..[?(@.question=='2020-21E-04')].rows[2].col2", - "$..[?(@.question=='2020-21E-01')].rows[2].col2" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col3": [ - { - "targets": [ - "$..[?(@.question=='2020-21E-04')].rows[2].col3", - "$..[?(@.question=='2020-21E-01')].rows[2].col3" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col4": [ - { - "targets": [ - "$..[?(@.question=='2020-21E-04')].rows[2].col4", - "$..[?(@.question=='2020-21E-01')].rows[2].col4" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col5": [ - { - "targets": [ - "$..[?(@.question=='2020-21E-04')].rows[2].col5", - "$..[?(@.question=='2020-21E-01')].rows[2].col5" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col6": [ - { - "targets": [ - "$..[?(@.question=='2020-21E-04')].rows[2].col6", - "$..[?(@.question=='2020-21E-01')].rows[2].col6" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ] - }, - { - "col1": "C. Primary Care Case Management", - "col2": [ - { - "targets": [ - "$..[?(@.question=='2020-21E-04')].rows[3].col2", - "$..[?(@.question=='2020-21E-01')].rows[3].col2" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col3": [ - { - "targets": [ - "$..[?(@.question=='2020-21E-04')].rows[3].col3", - "$..[?(@.question=='2020-21E-01')].rows[3].col3" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col4": [ - { - "targets": [ - "$..[?(@.question=='2020-21E-04')].rows[3].col4", - "$..[?(@.question=='2020-21E-01')].rows[3].col4" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col5": [ - { - "targets": [ - "$..[?(@.question=='2020-21E-04')].rows[3].col5", - "$..[?(@.question=='2020-21E-01')].rows[3].col5" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col6": [ - { - "targets": [ - "$..[?(@.question=='2020-21E-04')].rows[3].col6", - "$..[?(@.question=='2020-21E-01')].rows[3].col6" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ] - } - ], - "last_modified": "2020-01-15T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2020-01-15T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2020-21E-06", - "form_id": "1", - "form": "21E", - "year": 2020, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "label": "What is the number of children &&&VARIABLE&&& enrolled at the end of the quarter?", - "age_ranges": [ - { "key": "0000", "label": "Under Age 0" }, - { "key": "0001", "label": "Ages 0 - 1" }, - { "key": "0105", "label": "Ages 1 - 5" }, - { "key": "0612", "label": "Ages 6 - 12" }, - { "key": "1318", "label": "Ages 13 - 18" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2020-01-15T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2020-01-15T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2020-21E-07", - "form_id": "1", - "form": "21E", - "year": 2020, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "context_data": { - "show_if_quarter_in": ["4"] - }, - "label": "What is the unduplicated number of children &&&VARIABLE&&& ever enrolled during the year?", - "age_ranges": [ - { "key": "0000", "label": "Under Age 0" }, - { "key": "0001", "label": "Ages 0 - 1" }, - { "key": "0105", "label": "Ages 1 - 5" }, - { "key": "0612", "label": "Ages 6 - 12" }, - { "key": "1318", "label": "Ages 13 - 18" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2020-01-15T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2020-01-15T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2020-21E-08", - "form_id": "1", - "form": "21E", - "year": 2020, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "context_data": { - "show_if_quarter_in": ["4"] - }, - "label": "What is the unduplicated number of new enrollees &&&VARIABLE&&& during the year?", - "age_ranges": [ - { "key": "0000", "label": "Under Age 0" }, - { "key": "0001", "label": "Ages 0 - 1" }, - { "key": "0105", "label": "Ages 1 - 5" }, - { "key": "0612", "label": "Ages 6 - 12" }, - { "key": "1318", "label": "Ages 13 - 18" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2020-01-15T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2020-01-15T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2020-21E-09", - "form_id": "1", - "form": "21E", - "year": 2020, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "context_data": { - "show_if_quarter_in": ["4"] - }, - "label": "What is the unduplicated number of disenrollees &&&VARIABLE&&& during the year?", - "age_ranges": [ - { "key": "0000", "label": "Under Age 0" }, - { "key": "0001", "label": "Ages 0 - 1" }, - { "key": "0105", "label": "Ages 1 - 5" }, - { "key": "0612", "label": "Ages 6 - 12" }, - { "key": "1318", "label": "Ages 13 - 18" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2020-01-15T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2020-01-15T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2020-21PW-01", - "form_id": "6", - "form": "21PW", - "year": 2020, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "label": "What is the unduplicated number of pregnant women ever enrolled during the quarter?", - "age_ranges": [ - { "key": "1964", "label": "Age 19 years through age 64 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2020-10-01T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2020-10-01T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2020-21PW-02", - "form_id": "6", - "form": "21PW", - "year": 2020, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "label": "What is the unduplicated number of new enrollees in the quarter?", - "age_ranges": [ - { "key": "1964", "label": "Age 19 years through age 64 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2020-10-01T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2020-10-01T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2020-21PW-03", - "form_id": "6", - "form": "21PW", - "year": 2020, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "label": "What is the unduplicated number of disenrollees in the quarter?", - "age_ranges": [ - { "key": "1964", "label": "Age 19 years through age 64 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2020-10-01T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2020-10-01T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2020-21PW-04", - "form_id": "6", - "form": "21PW", - "year": 2020, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "label": "What is the number of member-months of enrollment for pregnant women in the quarter?", - "age_ranges": [ - { "key": "1964", "label": "Age 19 years through age 64 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2020-10-01T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2020-10-01T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2020-21PW-05", - "form_id": "6", - "form": "21PW", - "year": 2020, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "label": "What is the average number of months of enrollment for pregnant women ever enrolled during the quarter?", - "readonly": true, - "comment": "Divide the entries in Question 4 by the entries in Question 1.", - "age_ranges": [ - { "key": "1964", "label": "Age 19 years through age 64 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301" - }, - { - "col1": "A. Fee-for-Service", - "col2": [ - { - "targets": [ - "$..[?(@.question=='2020-21PW-04')].rows[1].col2", - "$..[?(@.question=='2020-21PW-01')].rows[1].col2" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col3": [ - { - "targets": [ - "$..[?(@.question=='2020-21PW-04')].rows[1].col3", - "$..[?(@.question=='2020-21PW-01')].rows[1].col3" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col4": [ - { - "targets": [ - "$..[?(@.question=='2020-21PW-04')].rows[1].col4", - "$..[?(@.question=='2020-21PW-01')].rows[1].col4" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col5": [ - { - "targets": [ - "$..[?(@.question=='2020-21PW-04')].rows[1].col5", - "$..[?(@.question=='2020-21PW-01')].rows[1].col5" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col6": [ - { - "targets": [ - "$..[?(@.question=='2020-21PW-04')].rows[1].col6", - "$..[?(@.question=='2020-21PW-01')].rows[1].col6" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ] - }, - { - "col1": "B. Managed Care Arrangements", - "col2": [ - { - "targets": [ - "$..[?(@.question=='2020-21PW-04')].rows[2].col2", - "$..[?(@.question=='2020-21PW-01')].rows[2].col2" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col3": [ - { - "targets": [ - "$..[?(@.question=='2020-21PW-04')].rows[2].col3", - "$..[?(@.question=='2020-21PW-01')].rows[2].col3" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col4": [ - { - "targets": [ - "$..[?(@.question=='2020-21PW-04')].rows[2].col4", - "$..[?(@.question=='2020-21PW-01')].rows[2].col4" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col5": [ - { - "targets": [ - "$..[?(@.question=='2020-21PW-04')].rows[2].col5", - "$..[?(@.question=='2020-21PW-01')].rows[2].col5" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col6": [ - { - "targets": [ - "$..[?(@.question=='2020-21PW-04')].rows[2].col6", - "$..[?(@.question=='2020-21PW-01')].rows[2].col6" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ] - }, - { - "col1": "C. Primary Care Case Management", - "col2": [ - { - "targets": [ - "$..[?(@.question=='2020-21PW-04')].rows[3].col2", - "$..[?(@.question=='2020-21PW-01')].rows[3].col2" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col3": [ - { - "targets": [ - "$..[?(@.question=='2020-21PW-04')].rows[3].col3", - "$..[?(@.question=='2020-21PW-01')].rows[3].col3" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col4": [ - { - "targets": [ - "$..[?(@.question=='2020-21PW-04')].rows[3].col4", - "$..[?(@.question=='2020-21PW-01')].rows[3].col4" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col5": [ - { - "targets": [ - "$..[?(@.question=='2020-21PW-04')].rows[3].col5", - "$..[?(@.question=='2020-21PW-01')].rows[3].col5" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col6": [ - { - "targets": [ - "$..[?(@.question=='2020-21PW-04')].rows[3].col6", - "$..[?(@.question=='2020-21PW-01')].rows[3].col6" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ] - } - ], - "last_modified": "2020-10-01T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2020-10-01T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2020-21PW-06", - "form_id": "6", - "form": "21PW", - "year": 2020, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "label": "What is the number of pregnant women enrolled at the end of the quarter?", - "age_ranges": [ - { "key": "1964", "label": "Age 19 years through age 64 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2020-10-01T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2020-10-01T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2020-21PW-07", - "form_id": "6", - "form": "21PW", - "year": 2020, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "context_data": { - "show_if_quarter_in": ["4"] - }, - "label": "What is the unduplicated number of pregnant women ever enrolled during the year?", - "age_ranges": [ - { "key": "1964", "label": "Age 19 years through age 64 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2020-10-01T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2020-10-01T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2020-21PW-08", - "form_id": "6", - "form": "21PW", - "year": 2020, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "context_data": { - "show_if_quarter_in": ["4"] - }, - "label": "What is the unduplicated number of new enrollees during the year?", - "age_ranges": [ - { "key": "1964", "label": "Age 19 years through age 64 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2020-10-01T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2020-10-01T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2020-21PW-09", - "form_id": "6", - "form": "21PW", - "year": 2020, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "context_data": { - "show_if_quarter_in": ["4"] - }, - "label": "What is the unduplicated number of disenrollees during the year?", - "age_ranges": [ - { "key": "1964", "label": "Age 19 years through age 64 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2020-10-01T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2020-10-01T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2020-64.21E-01", - "form_id": "3", - "form": "64.21E", - "year": 2020, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "label": "What is the unduplicated number of children &&&VARIABLE&&& ever enrolled during the quarter?", - "age_ranges": [ - { "key": "0001", "label": "Birth through age 12 months" }, - { "key": "0105", "label": "Age 1 year through age 5 years" }, - { "key": "0612", "label": "Age 6 years through age 12 years" }, - { "key": "1318", "label": "Age 13 years through age 18 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2020-01-15T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2020-01-15T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2020-64.21E-02", - "form_id": "3", - "form": "64.21E", - "year": 2020, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "label": "What is the unduplicated number of new enrollees &&&VARIABLE&&& in the quarter?", - "age_ranges": [ - { "key": "0001", "label": "Birth through age 12 months" }, - { "key": "0105", "label": "Age 1 year through age 5 years" }, - { "key": "0612", "label": "Age 6 years through age 12 years" }, - { "key": "1318", "label": "Age 13 years through age 18 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2020-01-15T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2020-01-15T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2020-64.21E-03", - "form_id": "3", - "form": "64.21E", - "year": 2020, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "label": "What is the unduplicated number of disenrollees &&&VARIABLE&&& in the quarter?", - "age_ranges": [ - { "key": "0001", "label": "Birth through age 12 months" }, - { "key": "0105", "label": "Age 1 year through age 5 years" }, - { "key": "0612", "label": "Age 6 years through age 12 years" }, - { "key": "1318", "label": "Age 13 years through age 18 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2020-01-15T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2020-01-15T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2020-64.21E-04", - "form_id": "3", - "form": "64.21E", - "year": 2020, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "label": "What is the number of member-months of enrollment for children &&&VARIABLE&&& in the quarter?", - "age_ranges": [ - { "key": "0001", "label": "Birth through age 12 months" }, - { "key": "0105", "label": "Age 1 year through age 5 years" }, - { "key": "0612", "label": "Age 6 years through age 12 years" }, - { "key": "1318", "label": "Age 13 years through age 18 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2020-01-15T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2020-01-15T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2020-64.21E-05", - "form_id": "3", - "form": "64.21E", - "year": 2020, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "label": "What is the average number of months of enrollment for children &&&VARIABLE&&& ever enrolled during the quarter?", - "readonly": true, - "comment": "Divide the entries in Question 4 by the entries in Question 1.", - "age_ranges": [ - { "key": "0001", "label": "Birth through age 12 months" }, - { "key": "0105", "label": "Age 1 year through age 5 years" }, - { "key": "0612", "label": "Age 6 years through age 12 years" }, - { "key": "1318", "label": "Age 13 years through age 18 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": [ - { - "targets": [ - "$..[?(@.question=='2020-64.21E-04')].rows[1].col2", - "$..[?(@.question=='2020-64.21E-01')].rows[1].col2" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col3": [ - { - "targets": [ - "$..[?(@.question=='2020-64.21E-04')].rows[1].col3", - "$..[?(@.question=='2020-64.21E-01')].rows[1].col3" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col4": [ - { - "targets": [ - "$..[?(@.question=='2020-64.21E-04')].rows[1].col4", - "$..[?(@.question=='2020-64.21E-01')].rows[1].col4" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col5": [ - { - "targets": [ - "$..[?(@.question=='2020-64.21E-04')].rows[1].col5", - "$..[?(@.question=='2020-64.21E-01')].rows[1].col5" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col6": [ - { - "targets": [ - "$..[?(@.question=='2020-64.21E-04')].rows[1].col6", - "$..[?(@.question=='2020-64.21E-01')].rows[1].col6" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ] - }, - { - "col1": "B. Managed Care Arrangements", - "col2": [ - { - "targets": [ - "$..[?(@.question=='2020-64.21E-04')].rows[2].col2", - "$..[?(@.question=='2020-64.21E-01')].rows[2].col2" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col3": [ - { - "targets": [ - "$..[?(@.question=='2020-64.21E-04')].rows[2].col3", - "$..[?(@.question=='2020-64.21E-01')].rows[2].col3" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col4": [ - { - "targets": [ - "$..[?(@.question=='2020-64.21E-04')].rows[2].col4", - "$..[?(@.question=='2020-64.21E-01')].rows[2].col4" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col5": [ - { - "targets": [ - "$..[?(@.question=='2020-64.21E-04')].rows[2].col5", - "$..[?(@.question=='2020-64.21E-01')].rows[2].col5" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col6": [ - { - "targets": [ - "$..[?(@.question=='2020-64.21E-04')].rows[2].col6", - "$..[?(@.question=='2020-64.21E-01')].rows[2].col6" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ] - }, - { - "col1": "C. Primary Care Case Management", - "col2": [ - { - "targets": [ - "$..[?(@.question=='2020-64.21E-04')].rows[3].col2", - "$..[?(@.question=='2020-64.21E-01')].rows[3].col2" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col3": [ - { - "targets": [ - "$..[?(@.question=='2020-64.21E-04')].rows[3].col3", - "$..[?(@.question=='2020-64.21E-01')].rows[3].col3" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col4": [ - { - "targets": [ - "$..[?(@.question=='2020-64.21E-04')].rows[3].col4", - "$..[?(@.question=='2020-64.21E-01')].rows[3].col4" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col5": [ - { - "targets": [ - "$..[?(@.question=='2020-64.21E-04')].rows[3].col5", - "$..[?(@.question=='2020-64.21E-01')].rows[3].col5" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col6": [ - { - "targets": [ - "$..[?(@.question=='2020-64.21E-04')].rows[3].col6", - "$..[?(@.question=='2020-64.21E-01')].rows[3].col6" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ] - } - ], - "last_modified": "2020-01-15T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2020-01-15T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2020-64.21E-06", - "form_id": "3", - "form": "64.21E", - "year": 2020, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "label": "What is the number of children &&&VARIABLE&&& enrolled at the end of the quarter?", - "age_ranges": [ - { "key": "0001", "label": "Birth through age 12 months" }, - { "key": "0105", "label": "Age 1 year through age 5 years" }, - { "key": "0612", "label": "Age 6 years through age 12 years" }, - { "key": "1318", "label": "Age 13 years through age 18 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2020-01-15T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2020-01-15T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2020-64.21E-07", - "form_id": "3", - "form": "64.21E", - "year": 2020, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "context_data": { - "show_if_quarter_in": ["4"] - }, - "label": "What is the unduplicated number of children &&&VARIABLE&&& ever enrolled during the year?", - "age_ranges": [ - { "key": "0001", "label": "Birth through age 12 months" }, - { "key": "0105", "label": "Age 1 year through age 5 years" }, - { "key": "0612", "label": "Age 6 years through age 12 years" }, - { "key": "1318", "label": "Age 13 years through age 18 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2020-01-15T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2020-01-15T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2020-64.21E-08", - "form_id": "3", - "form": "64.21E", - "year": 2020, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "context_data": { - "show_if_quarter_in": ["4"] - }, - "label": "What is the unduplicated number of new enrollees &&&VARIABLE&&& during the year?", - "age_ranges": [ - { "key": "0001", "label": "Birth through age 12 months" }, - { "key": "0105", "label": "Age 1 year through age 5 years" }, - { "key": "0612", "label": "Age 6 years through age 12 years" }, - { "key": "1318", "label": "Age 13 years through age 18 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2020-01-15T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2020-01-15T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2020-64.21E-09", - "form_id": "3", - "form": "64.21E", - "year": 2020, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "context_data": { - "show_if_quarter_in": ["4"] - }, - "label": "What is the unduplicated number of disenrollees &&&VARIABLE&&& during the year?", - "age_ranges": [ - { "key": "0001", "label": "Birth through age 12 months" }, - { "key": "0105", "label": "Age 1 year through age 5 years" }, - { "key": "0612", "label": "Age 6 years through age 12 years" }, - { "key": "1318", "label": "Age 13 years through age 18 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2020-01-15T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2020-01-15T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2020-64.EC-01", - "form": "64.EC", - "year": 2020, - "type": "datagridwithtotals", - "rowTotal": true, - "columnTotal": true, - "label": "What is the unduplicated number of children &&&VARIABLE&&& ever enrolled during the quarter?", - "age_ranges": [ - { "key": "0001", "label": "Birth through age 12 months" }, - { "key": "0105", "label": "Age 1 year through age 5 years" }, - { "key": "0612", "label": "Age 6 years through age 12 years" }, - { "key": "1318", "label": "Age 13 years through age 18 years" }, - { "key": "1920", "label": "Age 19 years through age 20 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "lastModified": "2020-01-15T12:46:35.838Z", - "lastModifiedBY": "seed", - "createdDate": "2020-01-15T12:46:35.838Z", - "createdBY": "seed" - }, - { - "question": "2020-64.EC-02", - "form": "64.EC", - "year": 2020, - "type": "datagridwithtotals", - "rowTotal": true, - "columnTotal": true, - "label": "What is the unduplicated number of new enrollees &&&VARIABLE&&& in the quarter?", - "age_ranges": [ - { "key": "0001", "label": "Birth through age 12 months" }, - { "key": "0105", "label": "Age 1 year through age 5 years" }, - { "key": "0612", "label": "Age 6 years through age 12 years" }, - { "key": "1318", "label": "Age 13 years through age 18 years" }, - { "key": "1920", "label": "Age 19 years through age 20 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "lastModified": "2020-01-15T12:46:35.838Z", - "lastModifiedBY": "seed", - "createdDate": "2020-01-15T12:46:35.838Z", - "createdBY": "seed" - }, - { - "question": "2020-64.EC-03", - "form": "64.EC", - "year": 2020, - "type": "datagridwithtotals", - "rowTotal": true, - "columnTotal": true, - "label": "What is the unduplicated number of disenrollees &&&VARIABLE&&& in the quarter?", - "age_ranges": [ - { "key": "0001", "label": "Birth through age 12 months" }, - { "key": "0105", "label": "Age 1 year through age 5 years" }, - { "key": "0612", "label": "Age 6 years through age 12 years" }, - { "key": "1318", "label": "Age 13 years through age 18 years" }, - { "key": "1920", "label": "Age 19 years through age 20 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "lastModified": "2020-01-15T12:46:35.838Z", - "lastModifiedBY": "seed", - "createdDate": "2020-01-15T12:46:35.838Z", - "createdBY": "seed" - }, - { - "question": "2020-64.EC-04", - "form": "64.EC", - "year": 2020, - "type": "datagridwithtotals", - "rowTotal": true, - "columnTotal": true, - "label": "What is the number of member-months of enrollment for children &&&VARIABLE&&& in the quarter?", - "age_ranges": [ - { "key": "0001", "label": "Birth through age 12 months" }, - { "key": "0105", "label": "Age 1 year through age 5 years" }, - { "key": "0612", "label": "Age 6 years through age 12 years" }, - { "key": "1318", "label": "Age 13 years through age 18 years" }, - { "key": "1920", "label": "Age 19 years through age 20 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "lastModified": "2020-01-15T12:46:35.838Z", - "lastModifiedBY": "seed", - "createdDate": "2020-01-15T12:46:35.838Z", - "createdBY": "seed" - }, - { - "question": "2020-64.EC-05", - "form": "64.EC", - "year": 2020, - "type": "datagridwithtotals", - "rowTotal": true, - "columnTotal": true, - "label": "What is the average number of months of enrollment for children &&&VARIABLE&&& ever enrolled during the quarter?", - "readonly": true, - "comment": "Divide the entries in Question 4 by the entries in Question 1.", - "age_ranges": [ - { "key": "0001", "label": "Birth through age 12 months" }, - { "key": "0105", "label": "Age 1 year through age 5 years" }, - { "key": "0612", "label": "Age 6 years through age 12 years" }, - { "key": "1318", "label": "Age 13 years through age 18 years" }, - { "key": "1920", "label": "Age 19 years through age 20 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": [ - { - "targets": [ - "$..[?(@.question=='2020-64.EC-04')].rows[1].col2", - "$..[?(@.question=='2020-64.EC-01')].rows[1].col2" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col3": [ - { - "targets": [ - "$..[?(@.question=='2020-64.EC-04')].rows[1].col3", - "$..[?(@.question=='2020-64.EC-01')].rows[1].col3" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col4": [ - { - "targets": [ - "$..[?(@.question=='2020-64.EC-04')].rows[1].col4", - "$..[?(@.question=='2020-64.EC-01')].rows[1].col4" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col5": [ - { - "targets": [ - "$..[?(@.question=='2020-64.EC-04')].rows[1].col5", - "$..[?(@.question=='2020-64.EC-01')].rows[1].col5" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col6": [ - { - "targets": [ - "$..[?(@.question=='2020-64.EC-04')].rows[1].col6", - "$..[?(@.question=='2020-64.EC-01')].rows[1].col6" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ] - }, - { - "col1": "B. Managed Care Arrangements", - "col2": [ - { - "targets": [ - "$..[?(@.question=='2020-64.EC-04')].rows[2].col2", - "$..[?(@.question=='2020-64.EC-01')].rows[2].col2" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col3": [ - { - "targets": [ - "$..[?(@.question=='2020-64.EC-04')].rows[2].col3", - "$..[?(@.question=='2020-64.EC-01')].rows[2].col3" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col4": [ - { - "targets": [ - "$..[?(@.question=='2020-64.EC-04')].rows[2].col4", - "$..[?(@.question=='2020-64.EC-01')].rows[2].col4" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col5": [ - { - "targets": [ - "$..[?(@.question=='2020-64.EC-04')].rows[2].col5", - "$..[?(@.question=='2020-64.EC-01')].rows[2].col5" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col6": [ - { - "targets": [ - "$..[?(@.question=='2020-64.EC-04')].rows[2].col6", - "$..[?(@.question=='2020-64.EC-01')].rows[2].col6" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ] - }, - { - "col1": "C. Primary Care Case Management", - "col2": [ - { - "targets": [ - "$..[?(@.question=='2020-64.EC-04')].rows[3].col2", - "$..[?(@.question=='2020-64.EC-01')].rows[3].col2" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col3": [ - { - "targets": [ - "$..[?(@.question=='2020-64.EC-04')].rows[3].col3", - "$..[?(@.question=='2020-64.EC-01')].rows[3].col3" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col4": [ - { - "targets": [ - "$..[?(@.question=='2020-64.EC-04')].rows[3].col4", - "$..[?(@.question=='2020-64.EC-01')].rows[3].col4" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col5": [ - { - "targets": [ - "$..[?(@.question=='2020-64.EC-04')].rows[3].col5", - "$..[?(@.question=='2020-64.EC-01')].rows[3].col5" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col6": [ - { - "targets": [ - "$..[?(@.question=='2020-64.EC-04')].rows[3].col6", - "$..[?(@.question=='2020-64.EC-01')].rows[3].col6" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ] - } - ], - "lastModified": "2020-01-15T12:46:35.838Z", - "lastModifiedBY": "seed", - "createdDate": "2020-01-15T12:46:35.838Z", - "createdBY": "seed" - }, - { - "question": "2020-64.EC-06", - "form": "64.EC", - "year": 2020, - "type": "datagridwithtotals", - "rowTotal": true, - "columnTotal": true, - "label": "What is the number of children &&&VARIABLE&&& enrolled at the end of the quarter?", - "age_ranges": [ - { "key": "0001", "label": "Birth through age 12 months" }, - { "key": "0105", "label": "Age 1 year through age 5 years" }, - { "key": "0612", "label": "Age 6 years through age 12 years" }, - { "key": "1318", "label": "Age 13 years through age 18 years" }, - { "key": "1920", "label": "Age 19 years through age 20 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "lastModified": "2020-01-15T12:46:35.838Z", - "lastModifiedBY": "seed", - "createdDate": "2020-01-15T12:46:35.838Z", - "createdBY": "seed" - }, - { - "question": "2020-64.EC-07", - "form": "64.EC", - "year": 2020, - "type": "datagridwithtotals", - "rowTotal": true, - "columnTotal": true, - "context_data": { - "show_if_quarter_in": ["4"] - }, - "label": "What is the unduplicated number of children &&&VARIABLE&&& ever enrolled during the year?", - "age_ranges": [ - { "key": "0001", "label": "Birth through age 12 months" }, - { "key": "0105", "label": "Age 1 year through age 5 years" }, - { "key": "0612", "label": "Age 6 years through age 12 years" }, - { "key": "1318", "label": "Age 13 years through age 18 years" }, - { "key": "1920", "label": "Age 19 years through age 20 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "lastModified": "2020-01-15T12:46:35.838Z", - "lastModifiedBY": "seed", - "createdDate": "2020-01-15T12:46:35.838Z", - "createdBY": "seed" - }, - { - "question": "2020-64.EC-08", - "form": "64.EC", - "year": 2020, - "type": "datagridwithtotals", - "rowTotal": true, - "columnTotal": true, - "context_data": { - "show_if_quarter_in": ["4"] - }, - "label": "What is the unduplicated number of new enrollees &&&VARIABLE&&& during the year?", - "age_ranges": [ - { "key": "0001", "label": "Birth through age 12 months" }, - { "key": "0105", "label": "Age 1 year through age 5 years" }, - { "key": "0612", "label": "Age 6 years through age 12 years" }, - { "key": "1318", "label": "Age 13 years through age 18 years" }, - { "key": "1920", "label": "Age 19 years through age 20 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "lastModified": "2020-01-15T12:46:35.838Z", - "lastModifiedBY": "seed", - "createdDate": "2020-01-15T12:46:35.838Z", - "createdBY": "seed" - }, - { - "question": "2020-64.EC-09", - "form": "64.EC", - "year": 2020, - "type": "datagridwithtotals", - "rowTotal": true, - "columnTotal": true, - "context_data": { - "show_if_quarter_in": ["4"] - }, - "label": "What is the unduplicated number of disenrollees &&&VARIABLE&&& during the year?", - "age_ranges": [ - { "key": "0001", "label": "Birth through age 12 months" }, - { "key": "0105", "label": "Age 1 year through age 5 years" }, - { "key": "0612", "label": "Age 6 years through age 12 years" }, - { "key": "1318", "label": "Age 13 years through age 18 years" }, - { "key": "1920", "label": "Age 19 years through age 20 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "lastModified": "2020-01-15T12:46:35.838Z", - "lastModifiedBY": "seed", - "createdDate": "2020-01-15T12:46:35.838Z", - "createdBY": "seed" - }, - { - "question": "2020-GRE-01", - "form_id": "5", - "form": "GRE", - "year": 2020, - "type": "gregridwithtotals", - "row_total": true, - "column_total": true, - "label": "What is the number of enrollees by gender?", - "age_ranges": [ - { "key": "0018", "label": "Conception through age 18 years" } - ], - "rows": [ - { - "col1": "", - "col2": "21E Enrolled", - "col3": "64.21E Enrolled", - "col4": "Total CHIP Enrolled", - "col5": "64.EC Enrolled", - "col6": "21PW Enrolled" - }, - { - "col1": "1. Female", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "2. Male", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "3. Unspecified Gender", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2020-10-01T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2020-10-01T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2020-GRE-02", - "form_id": "5", - "form": "GRE", - "year": 2020, - "type": "gregridwithtotals", - "row_total": true, - "column_total": true, - "label": "What is the number of enrollees by race?", - "age_ranges": [ - { "key": "0018", "label": "Conception through age 18 years" } - ], - "rows": [ - { - "col1": "", - "col2": "21E Enrolled", - "col3": "64.21E Enrolled", - "col4": "Total CHIP Enrolled", - "col5": "64.EC Enrolled", - "col6": "21PW Enrolled" - }, - { - "col1": "1. White", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "2. Black or African American", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "3. American Indian or Alaska Native", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "4. Asian Indian", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "5. Chinese", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "6. Filipino", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "7. Japanese", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "8. Korean", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "9. Vietnamese", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "10. Other Asian", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "11. Asian Unknown", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "12. Native Hawaiian", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "13. Guamanian or Chamorro", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "14. Samoan", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "15. Other Pacific Islander", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "16. Native Hawaiian or Other Pacific Islander Unknown", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "17. Some other race", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "18. Two or more races (regardless of ethnicity)", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "19. Unspecified Race", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2020-10-01T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2020-10-01T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2020-GRE-03", - "form_id": "5", - "form": "GRE", - "year": 2020, - "type": "gregridwithtotals", - "row_total": true, - "column_total": true, - "label": "What is the number of enrollees by ethnicity?", - "age_ranges": [ - { "key": "0018", "label": "Conception through age 18 years" } - ], - "rows": [ - { - "col1": "", - "col2": "21E Enrolled", - "col3": "64.21E Enrolled", - "col4": "Total CHIP Enrolled", - "col5": "64.EC Enrolled", - "col6": "21PW Enrolled" - }, - { - "col1": "1. Not of Hispanic, Latino/a, or Spanish origin", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "2. Mexican, Mexican American, Chicano/a", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "3. Puerto Rican", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "4. Cuban", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "5. Another Hispanic, Latino, or Spanish Origin", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "6. Hispanic or Latino Unknown", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "7. Unspecified Ethnicity", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2020-10-01T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2020-10-01T12:46:35.838Z", - "created_by": "seed" - } - ] -} diff --git a/src/database/initial_data_load/form_template_2021.json b/src/database/initial_data_load/form_template_2021.json deleted file mode 100644 index 496920b0f..000000000 --- a/src/database/initial_data_load/form_template_2021.json +++ /dev/null @@ -1,2828 +0,0 @@ -{ - "year": 2021, - "template": [ - { - "question": "2021-21E-01", - "form_id": "1", - "form": "21E", - "year": 2021, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "label": "What is the unduplicated number of children &&&VARIABLE&&& ever enrolled during the quarter?", - "age_ranges": [ - { "key": "0000", "label": "Under Age 0" }, - { "key": "0001", "label": "Ages 0 - 1" }, - { "key": "0105", "label": "Ages 1 - 5" }, - { "key": "0612", "label": "Ages 6 - 12" }, - { "key": "1318", "label": "Ages 13 - 18" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2021-01-15T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2021-01-15T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2021-21E-02", - "form_id": "1", - "form": "21E", - "year": 2021, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "label": "What is the unduplicated number of new enrollees &&&VARIABLE&&& in the quarter?", - "age_ranges": [ - { "key": "0000", "label": "Under Age 0" }, - { "key": "0001", "label": "Ages 0 - 1" }, - { "key": "0105", "label": "Ages 1 - 5" }, - { "key": "0612", "label": "Ages 6 - 12" }, - { "key": "1318", "label": "Ages 13 - 18" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2021-01-15T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2021-01-15T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2021-21E-03", - "form_id": "1", - "form": "21E", - "year": 2021, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "label": "What is the unduplicated number of disenrollees &&&VARIABLE&&& in the quarter?", - "age_ranges": [ - { "key": "0000", "label": "Under Age 0" }, - { "key": "0001", "label": "Ages 0 - 1" }, - { "key": "0105", "label": "Ages 1 - 5" }, - { "key": "0612", "label": "Ages 6 - 12" }, - { "key": "1318", "label": "Ages 13 - 18" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2021-01-15T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2021-01-15T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2021-21E-04", - "form_id": "1", - "form": "21E", - "year": 2021, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "label": "What is the number of member-months of enrollment for children &&&VARIABLE&&& in the quarter?", - "age_ranges": [ - { "key": "0000", "label": "Under Age 0" }, - { "key": "0001", "label": "Ages 0 - 1" }, - { "key": "0105", "label": "Ages 1 - 5" }, - { "key": "0612", "label": "Ages 6 - 12" }, - { "key": "1318", "label": "Ages 13 - 18" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2021-01-15T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2021-01-15T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2021-21E-05", - "form_id": "1", - "form": "21E", - "year": 2021, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "label": "What is the average number of months of enrollment for children &&&VARIABLE&&& ever enrolled during the quarter?", - "readonly": true, - "comment": "Divide the entries in Question 4 by the entries in Question 1.", - "age_ranges": [ - { "key": "0000", "label": "Under Age 0" }, - { "key": "0001", "label": "Ages 0 - 1" }, - { "key": "0105", "label": "Ages 1 - 5" }, - { "key": "0612", "label": "Ages 6 - 12" }, - { "key": "1318", "label": "Ages 13 - 18" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": [ - { - "targets": [ - "$..[?(@.question=='2021-21E-04')].rows[1].col2", - "$..[?(@.question=='2021-21E-01')].rows[1].col2" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col3": [ - { - "targets": [ - "$..[?(@.question=='2021-21E-04')].rows[1].col3", - "$..[?(@.question=='2021-21E-01')].rows[1].col3" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col4": [ - { - "targets": [ - "$..[?(@.question=='2021-21E-04')].rows[1].col4", - "$..[?(@.question=='2021-21E-01')].rows[1].col4" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col5": [ - { - "targets": [ - "$..[?(@.question=='2021-21E-04')].rows[1].col5", - "$..[?(@.question=='2021-21E-01')].rows[1].col5" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col6": [ - { - "targets": [ - "$..[?(@.question=='2021-21E-04')].rows[1].col6", - "$..[?(@.question=='2021-21E-01')].rows[1].col6" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ] - }, - { - "col1": "B. Managed Care Arrangements", - "col2": [ - { - "targets": [ - "$..[?(@.question=='2021-21E-04')].rows[2].col2", - "$..[?(@.question=='2021-21E-01')].rows[2].col2" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col3": [ - { - "targets": [ - "$..[?(@.question=='2021-21E-04')].rows[2].col3", - "$..[?(@.question=='2021-21E-01')].rows[2].col3" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col4": [ - { - "targets": [ - "$..[?(@.question=='2021-21E-04')].rows[2].col4", - "$..[?(@.question=='2021-21E-01')].rows[2].col4" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col5": [ - { - "targets": [ - "$..[?(@.question=='2021-21E-04')].rows[2].col5", - "$..[?(@.question=='2021-21E-01')].rows[2].col5" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col6": [ - { - "targets": [ - "$..[?(@.question=='2021-21E-04')].rows[2].col6", - "$..[?(@.question=='2021-21E-01')].rows[2].col6" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ] - }, - { - "col1": "C. Primary Care Case Management", - "col2": [ - { - "targets": [ - "$..[?(@.question=='2021-21E-04')].rows[3].col2", - "$..[?(@.question=='2021-21E-01')].rows[3].col2" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col3": [ - { - "targets": [ - "$..[?(@.question=='2021-21E-04')].rows[3].col3", - "$..[?(@.question=='2021-21E-01')].rows[3].col3" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col4": [ - { - "targets": [ - "$..[?(@.question=='2021-21E-04')].rows[3].col4", - "$..[?(@.question=='2021-21E-01')].rows[3].col4" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col5": [ - { - "targets": [ - "$..[?(@.question=='2021-21E-04')].rows[3].col5", - "$..[?(@.question=='2021-21E-01')].rows[3].col5" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col6": [ - { - "targets": [ - "$..[?(@.question=='2021-21E-04')].rows[3].col6", - "$..[?(@.question=='2021-21E-01')].rows[3].col6" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ] - } - ], - "last_modified": "2021-01-15T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2021-01-15T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2021-21E-06", - "form_id": "1", - "form": "21E", - "year": 2021, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "label": "What is the number of children &&&VARIABLE&&& enrolled at the end of the quarter?", - "age_ranges": [ - { "key": "0000", "label": "Under Age 0" }, - { "key": "0001", "label": "Ages 0 - 1" }, - { "key": "0105", "label": "Ages 1 - 5" }, - { "key": "0612", "label": "Ages 6 - 12" }, - { "key": "1318", "label": "Ages 13 - 18" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2021-01-15T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2021-01-15T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2021-21E-07", - "form_id": "1", - "form": "21E", - "year": 2021, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "context_data": { - "show_if_quarter_in": ["4"] - }, - "label": "What is the unduplicated number of children &&&VARIABLE&&& ever enrolled during the year?", - "age_ranges": [ - { "key": "0000", "label": "Under Age 0" }, - { "key": "0001", "label": "Ages 0 - 1" }, - { "key": "0105", "label": "Ages 1 - 5" }, - { "key": "0612", "label": "Ages 6 - 12" }, - { "key": "1318", "label": "Ages 13 - 18" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2021-01-15T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2021-01-15T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2021-21E-08", - "form_id": "1", - "form": "21E", - "year": 2021, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "context_data": { - "show_if_quarter_in": ["4"] - }, - "label": "What is the unduplicated number of new enrollees &&&VARIABLE&&& during the year?", - "age_ranges": [ - { "key": "0000", "label": "Under Age 0" }, - { "key": "0001", "label": "Ages 0 - 1" }, - { "key": "0105", "label": "Ages 1 - 5" }, - { "key": "0612", "label": "Ages 6 - 12" }, - { "key": "1318", "label": "Ages 13 - 18" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2021-01-15T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2021-01-15T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2021-21E-09", - "form_id": "1", - "form": "21E", - "year": 2021, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "context_data": { - "show_if_quarter_in": ["4"] - }, - "label": "What is the unduplicated number of disenrollees &&&VARIABLE&&& during the year?", - "age_ranges": [ - { "key": "0000", "label": "Under Age 0" }, - { "key": "0001", "label": "Ages 0 - 1" }, - { "key": "0105", "label": "Ages 1 - 5" }, - { "key": "0612", "label": "Ages 6 - 12" }, - { "key": "1318", "label": "Ages 13 - 18" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2021-01-15T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2021-01-15T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2021-21PW-01", - "form_id": "6", - "form": "21PW", - "year": 2021, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "label": "What is the unduplicated number of pregnant women ever enrolled during the quarter?", - "age_ranges": [ - { "key": "1964", "label": "Age 19 years through age 64 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2021-10-01T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2021-10-01T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2021-21PW-02", - "form_id": "6", - "form": "21PW", - "year": 2021, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "label": "What is the unduplicated number of new enrollees in the quarter?", - "age_ranges": [ - { "key": "1964", "label": "Age 19 years through age 64 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2021-10-01T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2021-10-01T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2021-21PW-03", - "form_id": "6", - "form": "21PW", - "year": 2021, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "label": "What is the unduplicated number of disenrollees in the quarter?", - "age_ranges": [ - { "key": "1964", "label": "Age 19 years through age 64 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2021-10-01T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2021-10-01T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2021-21PW-04", - "form_id": "6", - "form": "21PW", - "year": 2021, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "label": "What is the number of member-months of enrollment for pregnant women in the quarter?", - "age_ranges": [ - { "key": "1964", "label": "Age 19 years through age 64 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2021-10-01T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2021-10-01T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2021-21PW-05", - "form_id": "6", - "form": "21PW", - "year": 2021, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "label": "What is the average number of months of enrollment for pregnant women ever enrolled during the quarter?", - "readonly": true, - "comment": "Divide the entries in Question 4 by the entries in Question 1.", - "age_ranges": [ - { "key": "1964", "label": "Age 19 years through age 64 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301" - }, - { - "col1": "A. Fee-for-Service", - "col2": [ - { - "targets": [ - "$..[?(@.question=='2021-21PW-04')].rows[1].col2", - "$..[?(@.question=='2021-21PW-01')].rows[1].col2" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col3": [ - { - "targets": [ - "$..[?(@.question=='2021-21PW-04')].rows[1].col3", - "$..[?(@.question=='2021-21PW-01')].rows[1].col3" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col4": [ - { - "targets": [ - "$..[?(@.question=='2021-21PW-04')].rows[1].col4", - "$..[?(@.question=='2021-21PW-01')].rows[1].col4" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col5": [ - { - "targets": [ - "$..[?(@.question=='2021-21PW-04')].rows[1].col5", - "$..[?(@.question=='2021-21PW-01')].rows[1].col5" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col6": [ - { - "targets": [ - "$..[?(@.question=='2021-21PW-04')].rows[1].col6", - "$..[?(@.question=='2021-21PW-01')].rows[1].col6" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ] - }, - { - "col1": "B. Managed Care Arrangements", - "col2": [ - { - "targets": [ - "$..[?(@.question=='2021-21PW-04')].rows[2].col2", - "$..[?(@.question=='2021-21PW-01')].rows[2].col2" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col3": [ - { - "targets": [ - "$..[?(@.question=='2021-21PW-04')].rows[2].col3", - "$..[?(@.question=='2021-21PW-01')].rows[2].col3" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col4": [ - { - "targets": [ - "$..[?(@.question=='2021-21PW-04')].rows[2].col4", - "$..[?(@.question=='2021-21PW-01')].rows[2].col4" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col5": [ - { - "targets": [ - "$..[?(@.question=='2021-21PW-04')].rows[2].col5", - "$..[?(@.question=='2021-21PW-01')].rows[2].col5" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col6": [ - { - "targets": [ - "$..[?(@.question=='2021-21PW-04')].rows[2].col6", - "$..[?(@.question=='2021-21PW-01')].rows[2].col6" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ] - }, - { - "col1": "C. Primary Care Case Management", - "col2": [ - { - "targets": [ - "$..[?(@.question=='2021-21PW-04')].rows[3].col2", - "$..[?(@.question=='2021-21PW-01')].rows[3].col2" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col3": [ - { - "targets": [ - "$..[?(@.question=='2021-21PW-04')].rows[3].col3", - "$..[?(@.question=='2021-21PW-01')].rows[3].col3" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col4": [ - { - "targets": [ - "$..[?(@.question=='2021-21PW-04')].rows[3].col4", - "$..[?(@.question=='2021-21PW-01')].rows[3].col4" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col5": [ - { - "targets": [ - "$..[?(@.question=='2021-21PW-04')].rows[3].col5", - "$..[?(@.question=='2021-21PW-01')].rows[3].col5" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col6": [ - { - "targets": [ - "$..[?(@.question=='2021-21PW-04')].rows[3].col6", - "$..[?(@.question=='2021-21PW-01')].rows[3].col6" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ] - } - ], - "last_modified": "2021-10-01T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2021-10-01T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2021-21PW-06", - "form_id": "6", - "form": "21PW", - "year": 2021, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "label": "What is the number of pregnant women enrolled at the end of the quarter?", - "age_ranges": [ - { "key": "1964", "label": "Age 19 years through age 64 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2021-10-01T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2021-10-01T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2021-21PW-07", - "form_id": "6", - "form": "21PW", - "year": 2021, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "context_data": { - "show_if_quarter_in": ["4"] - }, - "label": "What is the unduplicated number of pregnant women ever enrolled during the year?", - "age_ranges": [ - { "key": "1964", "label": "Age 19 years through age 64 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2021-10-01T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2021-10-01T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2021-21PW-08", - "form_id": "6", - "form": "21PW", - "year": 2021, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "context_data": { - "show_if_quarter_in": ["4"] - }, - "label": "What is the unduplicated number of new enrollees during the year?", - "age_ranges": [ - { "key": "1964", "label": "Age 19 years through age 64 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2021-10-01T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2021-10-01T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2021-21PW-09", - "form_id": "6", - "form": "21PW", - "year": 2021, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "context_data": { - "show_if_quarter_in": ["4"] - }, - "label": "What is the unduplicated number of disenrollees during the year?", - "age_ranges": [ - { "key": "1964", "label": "Age 19 years through age 64 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2021-10-01T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2021-10-01T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2021-64.21E-01", - "form_id": "3", - "form": "64.21E", - "year": 2021, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "label": "What is the unduplicated number of children &&&VARIABLE&&& ever enrolled during the quarter?", - "age_ranges": [ - { "key": "0001", "label": "Birth through age 12 months" }, - { "key": "0105", "label": "Age 1 year through age 5 years" }, - { "key": "0612", "label": "Age 6 years through age 12 years" }, - { "key": "1318", "label": "Age 13 years through age 18 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2021-01-15T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2021-01-15T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2021-64.21E-02", - "form_id": "3", - "form": "64.21E", - "year": 2021, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "label": "What is the unduplicated number of new enrollees &&&VARIABLE&&& in the quarter?", - "age_ranges": [ - { "key": "0001", "label": "Birth through age 12 months" }, - { "key": "0105", "label": "Age 1 year through age 5 years" }, - { "key": "0612", "label": "Age 6 years through age 12 years" }, - { "key": "1318", "label": "Age 13 years through age 18 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2021-01-15T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2021-01-15T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2021-64.21E-03", - "form_id": "3", - "form": "64.21E", - "year": 2021, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "label": "What is the unduplicated number of disenrollees &&&VARIABLE&&& in the quarter?", - "age_ranges": [ - { "key": "0001", "label": "Birth through age 12 months" }, - { "key": "0105", "label": "Age 1 year through age 5 years" }, - { "key": "0612", "label": "Age 6 years through age 12 years" }, - { "key": "1318", "label": "Age 13 years through age 18 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2021-01-15T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2021-01-15T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2021-64.21E-04", - "form_id": "3", - "form": "64.21E", - "year": 2021, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "label": "What is the number of member-months of enrollment for children &&&VARIABLE&&& in the quarter?", - "age_ranges": [ - { "key": "0001", "label": "Birth through age 12 months" }, - { "key": "0105", "label": "Age 1 year through age 5 years" }, - { "key": "0612", "label": "Age 6 years through age 12 years" }, - { "key": "1318", "label": "Age 13 years through age 18 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2021-01-15T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2021-01-15T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2021-64.21E-05", - "form_id": "3", - "form": "64.21E", - "year": 2021, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "label": "What is the average number of months of enrollment for children &&&VARIABLE&&& ever enrolled during the quarter?", - "readonly": true, - "comment": "Divide the entries in Question 4 by the entries in Question 1.", - "age_ranges": [ - { "key": "0001", "label": "Birth through age 12 months" }, - { "key": "0105", "label": "Age 1 year through age 5 years" }, - { "key": "0612", "label": "Age 6 years through age 12 years" }, - { "key": "1318", "label": "Age 13 years through age 18 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": [ - { - "targets": [ - "$..[?(@.question=='2021-64.21E-04')].rows[1].col2", - "$..[?(@.question=='2021-64.21E-01')].rows[1].col2" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col3": [ - { - "targets": [ - "$..[?(@.question=='2021-64.21E-04')].rows[1].col3", - "$..[?(@.question=='2021-64.21E-01')].rows[1].col3" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col4": [ - { - "targets": [ - "$..[?(@.question=='2021-64.21E-04')].rows[1].col4", - "$..[?(@.question=='2021-64.21E-01')].rows[1].col4" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col5": [ - { - "targets": [ - "$..[?(@.question=='2021-64.21E-04')].rows[1].col5", - "$..[?(@.question=='2021-64.21E-01')].rows[1].col5" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col6": [ - { - "targets": [ - "$..[?(@.question=='2021-64.21E-04')].rows[1].col6", - "$..[?(@.question=='2021-64.21E-01')].rows[1].col6" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ] - }, - { - "col1": "B. Managed Care Arrangements", - "col2": [ - { - "targets": [ - "$..[?(@.question=='2021-64.21E-04')].rows[2].col2", - "$..[?(@.question=='2021-64.21E-01')].rows[2].col2" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col3": [ - { - "targets": [ - "$..[?(@.question=='2021-64.21E-04')].rows[2].col3", - "$..[?(@.question=='2021-64.21E-01')].rows[2].col3" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col4": [ - { - "targets": [ - "$..[?(@.question=='2021-64.21E-04')].rows[2].col4", - "$..[?(@.question=='2021-64.21E-01')].rows[2].col4" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col5": [ - { - "targets": [ - "$..[?(@.question=='2021-64.21E-04')].rows[2].col5", - "$..[?(@.question=='2021-64.21E-01')].rows[2].col5" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col6": [ - { - "targets": [ - "$..[?(@.question=='2021-64.21E-04')].rows[2].col6", - "$..[?(@.question=='2021-64.21E-01')].rows[2].col6" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ] - }, - { - "col1": "C. Primary Care Case Management", - "col2": [ - { - "targets": [ - "$..[?(@.question=='2021-64.21E-04')].rows[3].col2", - "$..[?(@.question=='2021-64.21E-01')].rows[3].col2" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col3": [ - { - "targets": [ - "$..[?(@.question=='2021-64.21E-04')].rows[3].col3", - "$..[?(@.question=='2021-64.21E-01')].rows[3].col3" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col4": [ - { - "targets": [ - "$..[?(@.question=='2021-64.21E-04')].rows[3].col4", - "$..[?(@.question=='2021-64.21E-01')].rows[3].col4" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col5": [ - { - "targets": [ - "$..[?(@.question=='2021-64.21E-04')].rows[3].col5", - "$..[?(@.question=='2021-64.21E-01')].rows[3].col5" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col6": [ - { - "targets": [ - "$..[?(@.question=='2021-64.21E-04')].rows[3].col6", - "$..[?(@.question=='2021-64.21E-01')].rows[3].col6" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ] - } - ], - "last_modified": "2021-01-15T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2021-01-15T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2021-64.21E-06", - "form_id": "3", - "form": "64.21E", - "year": 2021, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "label": "What is the number of children &&&VARIABLE&&& enrolled at the end of the quarter?", - "age_ranges": [ - { "key": "0001", "label": "Birth through age 12 months" }, - { "key": "0105", "label": "Age 1 year through age 5 years" }, - { "key": "0612", "label": "Age 6 years through age 12 years" }, - { "key": "1318", "label": "Age 13 years through age 18 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2021-01-15T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2021-01-15T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2021-64.21E-07", - "form_id": "3", - "form": "64.21E", - "year": 2021, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "context_data": { - "show_if_quarter_in": ["4"] - }, - "label": "What is the unduplicated number of children &&&VARIABLE&&& ever enrolled during the year?", - "age_ranges": [ - { "key": "0001", "label": "Birth through age 12 months" }, - { "key": "0105", "label": "Age 1 year through age 5 years" }, - { "key": "0612", "label": "Age 6 years through age 12 years" }, - { "key": "1318", "label": "Age 13 years through age 18 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2021-01-15T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2021-01-15T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2021-64.21E-08", - "form_id": "3", - "form": "64.21E", - "year": 2021, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "context_data": { - "show_if_quarter_in": ["4"] - }, - "label": "What is the unduplicated number of new enrollees &&&VARIABLE&&& during the year?", - "age_ranges": [ - { "key": "0001", "label": "Birth through age 12 months" }, - { "key": "0105", "label": "Age 1 year through age 5 years" }, - { "key": "0612", "label": "Age 6 years through age 12 years" }, - { "key": "1318", "label": "Age 13 years through age 18 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2021-01-15T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2021-01-15T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2021-64.21E-09", - "form_id": "3", - "form": "64.21E", - "year": 2021, - "type": "datagridwithtotals", - "row_total": true, - "column_total": true, - "context_data": { - "show_if_quarter_in": ["4"] - }, - "label": "What is the unduplicated number of disenrollees &&&VARIABLE&&& during the year?", - "age_ranges": [ - { "key": "0001", "label": "Birth through age 12 months" }, - { "key": "0105", "label": "Age 1 year through age 5 years" }, - { "key": "0612", "label": "Age 6 years through age 12 years" }, - { "key": "1318", "label": "Age 13 years through age 18 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2021-01-15T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2021-01-15T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2021-64.EC-01", - "form": "64.EC", - "year": 2021, - "type": "datagridwithtotals", - "rowTotal": true, - "columnTotal": true, - "label": "What is the unduplicated number of children &&&VARIABLE&&& ever enrolled during the quarter?", - "age_ranges": [ - { "key": "0001", "label": "Birth through age 12 months" }, - { "key": "0105", "label": "Age 1 year through age 5 years" }, - { "key": "0612", "label": "Age 6 years through age 12 years" }, - { "key": "1318", "label": "Age 13 years through age 18 years" }, - { "key": "1920", "label": "Age 19 years through age 20 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "lastModified": "2021-01-15T12:46:35.838Z", - "lastModifiedBY": "seed", - "createdDate": "2021-01-15T12:46:35.838Z", - "createdBY": "seed" - }, - { - "question": "2021-64.EC-02", - "form": "64.EC", - "year": 2021, - "type": "datagridwithtotals", - "rowTotal": true, - "columnTotal": true, - "label": "What is the unduplicated number of new enrollees &&&VARIABLE&&& in the quarter?", - "age_ranges": [ - { "key": "0001", "label": "Birth through age 12 months" }, - { "key": "0105", "label": "Age 1 year through age 5 years" }, - { "key": "0612", "label": "Age 6 years through age 12 years" }, - { "key": "1318", "label": "Age 13 years through age 18 years" }, - { "key": "1920", "label": "Age 19 years through age 20 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "lastModified": "2021-01-15T12:46:35.838Z", - "lastModifiedBY": "seed", - "createdDate": "2021-01-15T12:46:35.838Z", - "createdBY": "seed" - }, - { - "question": "2021-64.EC-03", - "form": "64.EC", - "year": 2021, - "type": "datagridwithtotals", - "rowTotal": true, - "columnTotal": true, - "label": "What is the unduplicated number of disenrollees &&&VARIABLE&&& in the quarter?", - "age_ranges": [ - { "key": "0001", "label": "Birth through age 12 months" }, - { "key": "0105", "label": "Age 1 year through age 5 years" }, - { "key": "0612", "label": "Age 6 years through age 12 years" }, - { "key": "1318", "label": "Age 13 years through age 18 years" }, - { "key": "1920", "label": "Age 19 years through age 20 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "lastModified": "2021-01-15T12:46:35.838Z", - "lastModifiedBY": "seed", - "createdDate": "2021-01-15T12:46:35.838Z", - "createdBY": "seed" - }, - { - "question": "2021-64.EC-04", - "form": "64.EC", - "year": 2021, - "type": "datagridwithtotals", - "rowTotal": true, - "columnTotal": true, - "label": "What is the number of member-months of enrollment for children &&&VARIABLE&&& in the quarter?", - "age_ranges": [ - { "key": "0001", "label": "Birth through age 12 months" }, - { "key": "0105", "label": "Age 1 year through age 5 years" }, - { "key": "0612", "label": "Age 6 years through age 12 years" }, - { "key": "1318", "label": "Age 13 years through age 18 years" }, - { "key": "1920", "label": "Age 19 years through age 20 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "lastModified": "2021-01-15T12:46:35.838Z", - "lastModifiedBY": "seed", - "createdDate": "2021-01-15T12:46:35.838Z", - "createdBY": "seed" - }, - { - "question": "2021-64.EC-05", - "form": "64.EC", - "year": 2021, - "type": "datagridwithtotals", - "rowTotal": true, - "columnTotal": true, - "label": "What is the average number of months of enrollment for children &&&VARIABLE&&& ever enrolled during the quarter?", - "readonly": true, - "comment": "Divide the entries in Question 4 by the entries in Question 1.", - "age_ranges": [ - { "key": "0001", "label": "Birth through age 12 months" }, - { "key": "0105", "label": "Age 1 year through age 5 years" }, - { "key": "0612", "label": "Age 6 years through age 12 years" }, - { "key": "1318", "label": "Age 13 years through age 18 years" }, - { "key": "1920", "label": "Age 19 years through age 20 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": [ - { - "targets": [ - "$..[?(@.question=='2021-64.EC-04')].rows[1].col2", - "$..[?(@.question=='2021-64.EC-01')].rows[1].col2" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col3": [ - { - "targets": [ - "$..[?(@.question=='2021-64.EC-04')].rows[1].col3", - "$..[?(@.question=='2021-64.EC-01')].rows[1].col3" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col4": [ - { - "targets": [ - "$..[?(@.question=='2021-64.EC-04')].rows[1].col4", - "$..[?(@.question=='2021-64.EC-01')].rows[1].col4" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col5": [ - { - "targets": [ - "$..[?(@.question=='2021-64.EC-04')].rows[1].col5", - "$..[?(@.question=='2021-64.EC-01')].rows[1].col5" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col6": [ - { - "targets": [ - "$..[?(@.question=='2021-64.EC-04')].rows[1].col6", - "$..[?(@.question=='2021-64.EC-01')].rows[1].col6" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ] - }, - { - "col1": "B. Managed Care Arrangements", - "col2": [ - { - "targets": [ - "$..[?(@.question=='2021-64.EC-04')].rows[2].col2", - "$..[?(@.question=='2021-64.EC-01')].rows[2].col2" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col3": [ - { - "targets": [ - "$..[?(@.question=='2021-64.EC-04')].rows[2].col3", - "$..[?(@.question=='2021-64.EC-01')].rows[2].col3" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col4": [ - { - "targets": [ - "$..[?(@.question=='2021-64.EC-04')].rows[2].col4", - "$..[?(@.question=='2021-64.EC-01')].rows[2].col4" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col5": [ - { - "targets": [ - "$..[?(@.question=='2021-64.EC-04')].rows[2].col5", - "$..[?(@.question=='2021-64.EC-01')].rows[2].col5" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col6": [ - { - "targets": [ - "$..[?(@.question=='2021-64.EC-04')].rows[2].col6", - "$..[?(@.question=='2021-64.EC-01')].rows[2].col6" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ] - }, - { - "col1": "C. Primary Care Case Management", - "col2": [ - { - "targets": [ - "$..[?(@.question=='2021-64.EC-04')].rows[3].col2", - "$..[?(@.question=='2021-64.EC-01')].rows[3].col2" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col3": [ - { - "targets": [ - "$..[?(@.question=='2021-64.EC-04')].rows[3].col3", - "$..[?(@.question=='2021-64.EC-01')].rows[3].col3" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col4": [ - { - "targets": [ - "$..[?(@.question=='2021-64.EC-04')].rows[3].col4", - "$..[?(@.question=='2021-64.EC-01')].rows[3].col4" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col5": [ - { - "targets": [ - "$..[?(@.question=='2021-64.EC-04')].rows[3].col5", - "$..[?(@.question=='2021-64.EC-01')].rows[3].col5" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ], - "col6": [ - { - "targets": [ - "$..[?(@.question=='2021-64.EC-04')].rows[3].col6", - "$..[?(@.question=='2021-64.EC-01')].rows[3].col6" - ], - "actions": ["formula"], - "formula": "<0> / <1>" - } - ] - } - ], - "lastModified": "2021-01-15T12:46:35.838Z", - "lastModifiedBY": "seed", - "createdDate": "2021-01-15T12:46:35.838Z", - "createdBY": "seed" - }, - { - "question": "2021-64.EC-06", - "form": "64.EC", - "year": 2021, - "type": "datagridwithtotals", - "rowTotal": true, - "columnTotal": true, - "label": "What is the number of children &&&VARIABLE&&& enrolled at the end of the quarter?", - "age_ranges": [ - { "key": "0001", "label": "Birth through age 12 months" }, - { "key": "0105", "label": "Age 1 year through age 5 years" }, - { "key": "0612", "label": "Age 6 years through age 12 years" }, - { "key": "1318", "label": "Age 13 years through age 18 years" }, - { "key": "1920", "label": "Age 19 years through age 20 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "lastModified": "2021-01-15T12:46:35.838Z", - "lastModifiedBY": "seed", - "createdDate": "2021-01-15T12:46:35.838Z", - "createdBY": "seed" - }, - { - "question": "2021-64.EC-07", - "form": "64.EC", - "year": 2021, - "type": "datagridwithtotals", - "rowTotal": true, - "columnTotal": true, - "context_data": { - "show_if_quarter_in": ["4"] - }, - "label": "What is the unduplicated number of children &&&VARIABLE&&& ever enrolled during the year?", - "age_ranges": [ - { "key": "0001", "label": "Birth through age 12 months" }, - { "key": "0105", "label": "Age 1 year through age 5 years" }, - { "key": "0612", "label": "Age 6 years through age 12 years" }, - { "key": "1318", "label": "Age 13 years through age 18 years" }, - { "key": "1920", "label": "Age 19 years through age 20 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "lastModified": "2021-01-15T12:46:35.838Z", - "lastModifiedBY": "seed", - "createdDate": "2021-01-15T12:46:35.838Z", - "createdBY": "seed" - }, - { - "question": "2021-64.EC-08", - "form": "64.EC", - "year": 2021, - "type": "datagridwithtotals", - "rowTotal": true, - "columnTotal": true, - "context_data": { - "show_if_quarter_in": ["4"] - }, - "label": "What is the unduplicated number of new enrollees &&&VARIABLE&&& during the year?", - "age_ranges": [ - { "key": "0001", "label": "Birth through age 12 months" }, - { "key": "0105", "label": "Age 1 year through age 5 years" }, - { "key": "0612", "label": "Age 6 years through age 12 years" }, - { "key": "1318", "label": "Age 13 years through age 18 years" }, - { "key": "1920", "label": "Age 19 years through age 20 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "lastModified": "2021-01-15T12:46:35.838Z", - "lastModifiedBY": "seed", - "createdDate": "2021-01-15T12:46:35.838Z", - "createdBY": "seed" - }, - { - "question": "2021-64.EC-09", - "form": "64.EC", - "year": 2021, - "type": "datagridwithtotals", - "rowTotal": true, - "columnTotal": true, - "context_data": { - "show_if_quarter_in": ["4"] - }, - "label": "What is the unduplicated number of disenrollees &&&VARIABLE&&& during the year?", - "age_ranges": [ - { "key": "0001", "label": "Birth through age 12 months" }, - { "key": "0105", "label": "Age 1 year through age 5 years" }, - { "key": "0612", "label": "Age 6 years through age 12 years" }, - { "key": "1318", "label": "Age 13 years through age 18 years" }, - { "key": "1920", "label": "Age 19 years through age 20 years" } - ], - "rows": [ - { - "col1": "", - "col2": "% of FPL 0-133", - "col3": "% of FPL 134-200", - "col4": "% of FPL 201-250", - "col5": "% of FPL 251-300", - "col6": "% of FPL 301-317" - }, - { - "col1": "A. Fee-for-Service", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "B. Managed Care Arrangements", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "C. Primary Care Case Management", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "lastModified": "2021-01-15T12:46:35.838Z", - "lastModifiedBY": "seed", - "createdDate": "2021-01-15T12:46:35.838Z", - "createdBY": "seed" - }, - { - "question": "2021-GRE-01", - "form_id": "5", - "form": "GRE", - "year": 2021, - "type": "gregridwithtotals", - "row_total": true, - "column_total": true, - "label": "What is the number of enrollees by gender?", - "age_ranges": [ - { "key": "0018", "label": "Conception through age 18 years" } - ], - "rows": [ - { - "col1": "", - "col2": "21E Enrolled", - "col3": "64.21E Enrolled", - "col4": "Total CHIP Enrolled", - "col5": "64.EC Enrolled", - "col6": "21PW Enrolled" - }, - { - "col1": "1. Female", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "2. Male", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "3. Unspecified Gender", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2021-10-01T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2021-10-01T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2021-GRE-02", - "form_id": "5", - "form": "GRE", - "year": 2021, - "type": "gregridwithtotals", - "row_total": true, - "column_total": true, - "label": "What is the number of enrollees by race?", - "age_ranges": [ - { "key": "0018", "label": "Conception through age 18 years" } - ], - "rows": [ - { - "col1": "", - "col2": "21E Enrolled", - "col3": "64.21E Enrolled", - "col4": "Total CHIP Enrolled", - "col5": "64.EC Enrolled", - "col6": "21PW Enrolled" - }, - { - "col1": "1. White", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "2. Black or African American", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "3. American Indian or Alaska Native", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "4. Asian Indian", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "5. Chinese", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "6. Filipino", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "7. Japanese", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "8. Korean", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "9. Vietnamese", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "10. Other Asian", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "11. Asian Unknown", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "12. Native Hawaiian", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "13. Guamanian or Chamorro", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "14. Samoan", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "15. Other Pacific Islander", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "16. Native Hawaiian or Other Pacific Islander Unknown", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "17. Some other race", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "18. Two or more races (regardless of ethnicity)", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "19. Unspecified Race", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2021-10-01T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2021-10-01T12:46:35.838Z", - "created_by": "seed" - }, - { - "question": "2021-GRE-03", - "form_id": "5", - "form": "GRE", - "year": 2021, - "type": "gregridwithtotals", - "row_total": true, - "column_total": true, - "label": "What is the number of enrollees by ethnicity?", - "age_ranges": [ - { "key": "0018", "label": "Conception through age 18 years" } - ], - "rows": [ - { - "col1": "", - "col2": "21E Enrolled", - "col3": "64.21E Enrolled", - "col4": "Total CHIP Enrolled", - "col5": "64.EC Enrolled", - "col6": "21PW Enrolled" - }, - { - "col1": "1. Not of Hispanic, Latino/a, or Spanish origin", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "2. Mexican, Mexican American, Chicano/a", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "3. Puerto Rican", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "4. Cuban", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "5. Another Hispanic, Latino, or Spanish Origin", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "6. Hispanic or Latino Unknown", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - }, - { - "col1": "7. Unspecified Ethnicity", - "col2": null, - "col3": null, - "col4": null, - "col5": null, - "col6": null - } - ], - "last_modified": "2021-10-01T12:46:35.838Z", - "last_modified_by": "seed", - "created_date": "2021-10-01T12:46:35.838Z", - "created_by": "seed" - } - ] -} diff --git a/src/run.ts b/src/run.ts index a22813232..b53907d04 100644 --- a/src/run.ts +++ b/src/run.ts @@ -16,7 +16,7 @@ const deployedServices = [ "ui-auth", "ui-waf-log-assoc", "ui-src", -] +]; // Function to update .env files using 1Password CLI function updateEnvFiles() { @@ -50,7 +50,35 @@ async function run_db_locally(runner: LabeledProcessRunner) { ); runner.run_command_and_output( "db", - ["serverless", "dynamodb", "start", "--stage=local", "--migrate"], + [ + "serverless", + "offline", + "start", + "--stage", + "local", + "--lambdaPort", + "3003", + ], + "services/database" + ); + runner.run_command_and_output( + "db", + ["serverless", "dynamodb", "start", "--stage=local"], + "services/database" + ); + await new Promise((res) => setTimeout(res, 10 * 1000)); // The above runners need to all finish, not all can be awaited, they block + await runner.run_command_and_output( + "db", + [ + "aws", + "lambda", + "invoke", + "/dev/null", + "--endpoint-url", + "http://localhost:3003", + "--function-name", + "database-local-seed", + ], "services/database" ); } @@ -116,28 +144,6 @@ async function run_all_locally() { run_fe_locally(runner); } -async function seed_database( - runner: LabeledProcessRunner, - stage: string -) { - const seedService = "data-deployment" - await install_deps(runner, seedService); - const seedDeployCmd = ["sls", "deploy", "--stage", stage]; - // Deploy seed service - await runner.run_command_and_output( - "Seed service deploy", - seedDeployCmd, - `services/${seedService}` - ); - // Run seed - const seedCmd = ["sls", "dynamodb:seed", "--stage", stage]; - await runner.run_command_and_output( - "Run seed", - seedCmd, - `services/${seedService}` - ); -} - async function install_deps(runner: LabeledProcessRunner, service: string) { await runner.run_command_and_output( "Installing dependencies", @@ -158,10 +164,6 @@ async function deploy(options: { stage: string }) { await prepare_services(runner); const deployCmd = ["sls", "deploy", "--stage", stage]; await runner.run_command_and_output("Serverless deploy", deployCmd, "."); - // Seed when flag is set to true - if (process.env.SEED_DATABASE) { - await seed_database(runner, stage); - } } async function destroy_stage(options: { diff --git a/yarn.lock b/yarn.lock index 57392f300..2c73447d1 100644 --- a/yarn.lock +++ b/yarn.lock @@ -13409,7 +13409,7 @@ serverless-online@Enterprise-CMCS/macpro-serverless-online: serverless-plugin-scripts@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/serverless-plugin-scripts/-/serverless-plugin-scripts-1.0.2.tgz#21808c3cfd0a1a84e48c0660b0f6f370b5665486" - integrity sha1-IYCMPP0KGoTkjAZgsPbzcLVmVIY= + integrity sha512-+OL9fFz5r6BXNHfpu9MDLehS/haC0fy/T3V5uJsTfLAnNsn+PzM6BmvefUfWG372hBT7piTbywB1Vl1+4LmI5Q== "serverless-s3-bucket-helper@github:Enterprise-CMCS/serverless-s3-bucket-helper#0.1.1": version "1.0.0"