Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add plans page in naaar #11921

Merged
merged 3 commits into from
Nov 14, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 28 additions & 1 deletion services/app-api/forms/naaar.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
"name": "NAAAR Report Submission Form",
"basePath": "/naaar",
"version": "NAAAR_2024-08-06",
"entities": {},
"entities": {
"plans": { "required": true }
},
"routes": [
{
"name": "I. State and program information",
Expand Down Expand Up @@ -93,6 +95,31 @@
}
]
}
},
{
"name": "Add Plans",
"path": "/naaar/state-and-program-information/add-plans",
"pageType": "standard",
"verbiage": {
"intro": {
"section": "I. State and program information",
"subsection": "Add plans",
"info": "Enter the name of each plan that participates in the program for which the state is reporting data."
}
},
"form": {
"id": "iap",
"fields": [
{
"id": "plans",
"type": "dynamic",
"validation": "dynamic",
"props": {
"label": "Plan name"
}
}
]
}
}
]
},
Expand Down