- add a `submittedDate` to the submission data model - add a `reviewedDate` to the reviews and reviewSummations data model - update the swagger accordingly - create/update access on the field is limited to admins only - if not posted in w/ the payload (by and admin) the value of `submittedDate` or `reviewedDate` should default to the `createdDate` - if there is no `submittedDate` or `reviewedDate` on a record, the API should fall back to the `createdDate` for its value; ie: ``` submittedDate=record.submittedDate || record.createdDate ```