This award page summarizes federal procurement activity for award number W58P0522C0009 within Agency ID 9700 over the last 10 years. The record shows 5 award actions and total obligations of 1.77 billion dollars.
Award Number
Award Number 9700 / W58P0522C0009 Federal Contract Action Summary (Last 10 Years)
Federal procurement award record for award number W58P0522C0009 under Agency ID 9700, showing last-10-year obligation and action totals.
Totals are based on the provided analysis window and may differ from single-action values because they reflect cumulative award activity.
Overview
The award record for W58P0522C0009 contains 5 actions across the last 10 years, with total obligated funding of 1,774,999,987.2 dollars. The average action value is 354,999,997.44 dollars, which indicates substantial activity across the recorded actions. This page is intended to support review of obligation totals and award-level activity for Agency ID 9700.
How to use this page
Use this page to review the award’s cumulative obligated amount, action count, and average action value in one place. The data can support procurement analysis, award tracking, and comparison against other award records within Agency ID 9700.
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 = '9700' AND content__award__awardID__awardContractID__PIID = 'W58P0522C0009'
AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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 |
|---|---|---|---|---|
| 2100 | DEPT OF THE ARMY | 1,774,999,987.20 | 1.77 billion | 5 |
Insight
Over the 10-year window, obligations associated with PIID W58P0522C0009 are fully concentrated in a single top awarding agency: the Department of the Army. The Army accounts for $1.77 billion across 5 awards, indicating a highly concentrated funding profile with no other agencies appearing in the provided rows. This pattern suggests the award’s obligation history is narrowly distributed and agency-specific.
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 = '9700' AND content__award__awardID__awardContractID__PIID = 'W58P0522C0009'
AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
AND content__award__vendor__vendorHeader__vendorName != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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 |
|---|---|---|---|---|
| IHEALTH LABS INC. | 75EV5 | 1,774,999,987.20 | 1.77 billion | 5 |
Insight
IHEALTH LABS INC. is the only vendor listed for this award, with 5 actions totaling $1.77 billion over the 10-year window. This indicates complete vendor concentration within the provided result set, with all obligated dollars attributed to a single contractor. The distribution suggests no observed diversification among vendors for PIID W58P0522C0009 in this view.
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 = '9700' AND content__award__awardID__awardContractID__PIID = 'W58P0522C0009'
AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
AND content__award__productOrServiceInformation__principalNAICSCode != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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 |
|---|---|---|---|---|
| 325413 | IN-VITRO DIAGNOSTIC SUBSTANCE MANUFACTURING | 1,774,999,987.20 | 1.77 billion | 5 |
Insight
Over the 10-year window, award PIID W58P0522C0009 is fully concentrated in NAICS 325413, In-Vitro Diagnostic Substance Manufacturing, with $1.77 billion obligated across 5 awards. This indicates a highly focused procurement profile with no observed distribution across other NAICS codes in the provided data. The concentration suggests the award activity is consistently tied to this single product/service category.
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 = '9700' AND content__award__awardID__awardContractID__PIID = 'W58P0522C0009'
AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
AND content__award__productOrServiceInformation__productOrServiceCode != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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 |
|---|---|---|---|---|
| 6515 | MEDICAL AND SURGICAL INSTRUMENTS, EQUIPMENT, AND SUPPLIES | 1,774,999,987.20 | 1.77 billion | 5 |
Insight
Obligations for PIID W58P0522C0009 are concentrated entirely in PSC 6515, Medical and Surgical Instruments, Equipment, and Supplies. This PSC accounts for $1.77 billion across 5 awards over the 10-year window, indicating a highly focused procurement profile with no diversification across other PSCs in the provided data. The distribution suggests sustained purchasing in a single medical supply category rather than broad spend across multiple product classes.
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 = '9700' AND content__award__awardID__awardContractID__PIID = 'W58P0522C0009'
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
| Year | Total Obligated | Readable | Actions |
|---|---|---|---|
| 2022 | 1,774,999,987.20 | 1.77 billion | 5 |
Insight
In 2022, this award accounted for $1.77 billion in obligated funding across 5 awards, indicating a highly concentrated annual obligation profile. The limited award count suggests the obligation activity was concentrated rather than broadly distributed across multiple transactions. No other years are provided in the 10-year window, so longer-term trend direction cannot be assessed from the available data.
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 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.