Bug in Open API schema - GET /v1/inquiries

Seeing an issue with the Enrollment Management Open API definition. The /v1/inquiries schema doesn't match what the API returns. The schema is an array of InquiryRead, but the API returns a collection with Count and Value properties. This is leading to downstream issues as we use the Open API definitions to generate typed clients.

Schema (afe-edems):

"responses": {
"200": {
"description": "Returns list of inquiry and its data.",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/InquiryRead"
}

},

Response:

{
"count": 1,
"value": [
{
"id": 1111111,
"date_submitted": "2024-05-24T11:20:54.32+00:00",
"date_processed": "2024-05-24T11:24:38.757+00:00",
"user_id": 2222222,
"candidate": {
"first_name": "Example",
"last_name": "Smith",
"preferred_name": "Zample",