This award page summarizes procurement activity tied to PIID 75FCMC22C0038 for agency 7530 over the last full year. The record shows $844,902,459 in total obligations across 8 actions, for an average action value of $105,612,807.38.
Award Number
Award Number 7530 / 75FCMC22C0038 Federal Contract Action Summary (Last Year)
Award number 75FCMC22C0038 for agency 7530 shows 8 recorded actions in the last full year, with total obligations of $844.90 million.
Obligation totals and action counts reflect the provided analysis window and may differ from current FPDS results if records are updated.
Overview
The award record for PIID 75FCMC22C0038 under agency 7530 reflects 8 actions during the last full year. Total obligated value was $844,902,459, which works out to an average of $105,612,807.38 per action. These figures provide a compact view of procurement activity for the award within the selected period.
How to use this page
Use this page to review the award-level obligation total, action count, and average action value for the selected analysis window. It is also useful for comparing this award against other FPDS records by agency, PIID, or time period.
Top Agencies
SELECT
content__award__purchaserInformation__contractingOfficeAgencyID AS agency_id,
content__award__purchaserInformation__contractingOfficeAgencyID__name AS agency_name,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count,
formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
content__award__awardID__awardContractID__agencyID = '7530' AND content__award__awardID__awardContractID__PIID = '75FCMC22C0038'
AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
agency_id,
agency_name
ORDER BY total_obligated DESC
LIMIT 10
| Agency ID | Agency Name | Total Obligated | Readable | Actions |
|---|---|---|---|---|
| 7530 | CENTERS FOR MEDICARE AND MEDICAID SERVICES | 844,902,459.00 | 844.90 million | 8 |
Insight
Within the 1-year window for PIID 75FCMC22C0038, all reported obligation activity is concentrated in a single top agency: the Centers for Medicare and Medicaid Services (Agency ID 7530). CMS accounts for $844.90 million across 8 awards, indicating a highly concentrated obligation pattern with no other agencies represented in the provided rows. This suggests the award activity in scope is entirely agency-specific rather than distributed across multiple agencies.
Top Vendors
SELECT
vendor_name,
cage_code,
total_obligated,
award_count,
formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
SELECT
content__award__vendor__vendorHeader__vendorName AS vendor_name,
ifNull(content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode, '') AS cage_code,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count
FROM fpds.data
WHERE
content__award__awardID__awardContractID__agencyID = '7530' AND content__award__awardID__awardContractID__PIID = '75FCMC22C0038'
AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
AND content__award__vendor__vendorHeader__vendorName != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
vendor_name,
cage_code
)
ORDER BY total_obligated DESC
LIMIT 10
| Vendor | CAGE Code | Total Obligated | Readable | Actions |
|---|---|---|---|---|
| MAXIMUS FEDERAL SERVICES, INC. | 8AMZ8 | 844,902,459.00 | 844.90 million | 8 |
Insight
Obligations are highly concentrated with a single vendor. MAXIMUS FEDERAL SERVICES, INC. (CAGE 8AMZ8) accounts for 844.90 million across 8 awards in the 1-year window for PIID 75FCMC22C0038. This indicates award activity is concentrated in one vendor rather than distributed across multiple recipients.
Top NAICS
SELECT
content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
content__award__productOrServiceInformation__principalNAICSCode__description AS naics_name,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count,
formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
content__award__awardID__awardContractID__agencyID = '7530' AND content__award__awardID__awardContractID__PIID = '75FCMC22C0038'
AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
AND content__award__productOrServiceInformation__principalNAICSCode != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
naics_code,
naics_name
ORDER BY total_obligated DESC
LIMIT 10
| NAICS Code | Description | Total Obligated | Readable | Actions |
|---|---|---|---|---|
| 561422 | TELEMARKETING BUREAUS AND OTHER CONTACT CENTERS | 844,902,459.00 | 844.90 million | 8 |
Insight
Obligations for PIID 75FCMC22C0038 over the past year are fully concentrated in NAICS 561422, Telemarketing Bureaus and Other Contact Centers. The category accounts for $844.90 million across 8 awards, indicating a highly focused obligation profile rather than a broad NAICS distribution.
Top PSC Codes
SELECT
content__award__productOrServiceInformation__productOrServiceCode AS psc_code,
content__award__productOrServiceInformation__productOrServiceCode__description AS psc_name,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count,
formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
content__award__awardID__awardContractID__agencyID = '7530' AND content__award__awardID__awardContractID__PIID = '75FCMC22C0038'
AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
AND content__award__productOrServiceInformation__productOrServiceCode != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
psc_code,
psc_name
ORDER BY total_obligated DESC
LIMIT 10
| PSC Code | Description | Total Obligated | Readable | Actions |
|---|---|---|---|---|
| R499 | SUPPORT- PROFESSIONAL: OTHER | 844,902,459.00 | 844.90 million | 8 |
Insight
Obligations for award PIID 75FCMC22C0038 over the past year are fully concentrated in PSC R499 (Support- Professional: Other), accounting for $844.90 million across 8 awards. This indicates a narrow service mix with spending concentrated in a single professional support category. The distribution suggests limited PSC diversification within the observed window.
Annual Trend
SELECT
toYear(parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate)) AS year,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable,
count() AS award_count
FROM fpds.data
WHERE
content__award__awardID__awardContractID__agencyID = '7530' AND content__award__awardID__awardContractID__PIID = '75FCMC22C0038'
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
| Year | Total Obligated | Readable | Actions |
|---|---|---|---|
| 2025 | 844,902,459.00 | 844.90 million | 8 |
Insight
Within the 1-year window, 2025 accounts for $844.90 million in total obligated dollars across 8 awards for PIID 75FCMC22C0038 under agency 7530. Obligations are highly concentrated in a single year, indicating that funding activity is clustered rather than distributed over multiple years. The small award count relative to obligated dollars suggests a limited number of high-value actions drove the annual total.
Use FPDS Query for deeper award and vehicle analysis
Explore federal procurement data with custom SQL, fast filtering, and deeper contract action analysis across agencies, vendors, NAICS, PSC, and annual trends.
Continue from this last full year view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.