This page summarizes procurement activity for award number FA880615C0001 over the last 5 years. The award shows 455 actions with total obligated funds of 1.01 billion.
Award Number
Award Number 9700 / FA880615C0001 Federal Contract Action Summary (Last 5 Years)
FPDS award page for award number FA880615C0001 under agency ID 9700, showing activity over the last 5 years.
Dollar amounts are based on the provided total obligated exact value of 1,005,309,923.2 and the readable rounded figure.
Overview
The award record for FA880615C0001 spans 455 actions across the last 5 years, with total obligated funding of 1,005,309,923.2. The average action value is 2,209,472.36, which provides a simple view of the scale of individual activity within the award history.
How to use this page
Use this page to review award-level procurement activity associated with PIID FA880615C0001 and agency ID 9700. It is useful for identifying overall obligated value, action volume, and the average value of recorded actions within the selected analysis window.
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 = 'FA880615C0001'
AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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 |
|---|---|---|---|---|
| 5700 | DEPT OF THE AIR FORCE | 1,008,428,542.50 | 1.01 billion | 450 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | -3,118,619.30 | -3.12 million | 5 |
Insight
Obligations for PIID FA880615C0001 are highly concentrated in the DEPT OF THE AIR FORCE, which accounts for about $1.01 billion across 450 awards over the 5-year window. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) shows a small negative obligated amount of $3.12 million across 5 awards, indicating limited activity relative to the Air Force. The distribution suggests this award is overwhelmingly Air Force-driven, with DCMA representing only a minor offset.
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 = 'FA880615C0001'
AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
AND content__award__vendor__vendorHeader__vendorName != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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 |
|---|---|---|---|---|
| RANGE GENERATION NEXT LLC | 6WGJ0 | 1,005,309,923.20 | 1.01 billion | 455 |
Insight
Over the 5-year window, obligations for PIID FA880615C0001 are highly concentrated in a single vendor, RANGE GENERATION NEXT LLC (CAGE 6WGJ0). This vendor accounts for 455 awards and $1.01 billion in total obligated value, indicating a sustained, high-volume relationship rather than a dispersed vendor base. The absence of additional top vendors in the provided data suggests limited concentration diversification for this award record.
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 = 'FA880615C0001'
AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
AND content__award__productOrServiceInformation__principalNAICSCode != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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 |
|---|---|---|---|---|
| 541330 | ENGINEERING SERVICES | 1,005,309,923.20 | 1.01 billion | 455 |
Insight
Obligations for PIID FA880615C0001 over the 5-year window are fully concentrated in NAICS 541330, Engineering Services. This category accounts for $1.01 billion across 455 awards, indicating a highly focused procurement profile with no diversity across other NAICS codes in the provided data. The award pattern suggests sustained reliance on engineering services for this action.
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 = 'FA880615C0001'
AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
AND content__award__productOrServiceInformation__productOrServiceCode != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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 |
|---|---|---|---|---|
| R425 | SUPPORT- PROFESSIONAL: ENGINEERING/TECHNICAL | 1,005,309,923.20 | 1.01 billion | 455 |
Insight
Over the 5-year window, obligations for award FA880615C0001 are fully concentrated in PSC R425, Support- Professional: Engineering/Technical. This PSC accounts for $1.01 billion across 455 awards, indicating sustained and repeated procurement of engineering and technical support services rather than a diversified PSC mix. The concentration suggests this award has been a primary vehicle for obtaining technical support under a single service category.
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 = 'FA880615C0001'
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
| Year | Total Obligated | Readable | Actions |
|---|---|---|---|
| 2021 | 225,696,382.14 | 225.70 million | 66 |
| 2022 | 206,482,757.03 | 206.48 million | 124 |
| 2023 | 216,890,047.78 | 216.89 million | 104 |
| 2024 | 187,243,929.04 | 187.24 million | 94 |
| 2025 | 168,996,807.21 | 169.00 million | 67 |
Insight
Obligations for PIID FA880615C0001 under agency 9700 declined overall across the five-year window, from $225.70 million in 2021 to $169.00 million in 2025, a reduction of about $56.70 million. Award count peaked in 2022 at 124, then decreased each year to 67 in 2025, indicating a narrowing of activity after 2022. Total obligated dollars remained relatively concentrated in the 2021–2023 period before easing in 2024 and 2025.
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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.