This page summarizes procurement activity for award number W52P1J21F0454 within agency ID 9700 over the last 5 years. The award shows 17 actions and total obligated value of 1.69 billion dollars.
Award Number
Award Number 9700 / W52P1J21F0454 Federal Contract Action Summary (Last 5 Years)
FPDS award page for award number W52P1J21F0454 under agency ID 9700, summarizing obligations and actions over the last 5 years.
Values reflect the provided analysis window and the exact total obligated amount of 1688905979.23.
Overview
Award number W52P1J21F0454 is associated with agency ID 9700 and shows 17 recorded actions in the last 5 years. Total obligated value is 1688905979.23, with an average action value of 99347410.54. These figures provide a compact summary of the award's procurement activity in 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 W52P1J21F0454. The data supports quick filtering and comparison against other awards within the same agency and time window. It is suitable for procurement analysis that requires a concise view of award activity without additional interpretation.
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 = 'W52P1J21F0454'
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 |
|---|---|---|---|---|
| 2100 | DEPT OF THE ARMY | 1,688,905,979.23 | 1.69 billion | 17 |
Insight
For this award over the 5-year window, obligations are fully concentrated in a single top agency: the Department of the Army. The Army accounts for $1.69 billion across 17 awards, indicating a highly concentrated funding profile with no other agencies appearing in the provided rows. This suggests the award activity is driven almost entirely by one agency relationship.
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 = 'W52P1J21F0454'
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 |
|---|---|---|---|---|
| KBR SERVICES, LLC | 3GJU9 | 1,688,905,979.23 | 1.69 billion | 17 |
Insight
KBR SERVICES, LLC is the sole listed top vendor for this award within the 5-year window, with 17 awards totaling $1.69 billion obligated. This indicates a highly concentrated vendor profile, with all identified obligated value in this section attributable to a single contractor. The award pattern suggests sustained reliance on one vendor rather than a diversified distribution of obligation across multiple suppliers.
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 = 'W52P1J21F0454'
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 |
|---|---|---|---|---|
| 561210 | FACILITIES SUPPORT SERVICES | 1,688,905,979.23 | 1.69 billion | 17 |
Insight
Over the past 5 years, obligations for award W52P1J21F0454 are fully concentrated in NAICS 561210, Facilities Support Services, with $1.69 billion across 17 awards. This indicates a highly focused procurement profile with no diversification across additional NAICS codes in the provided data. The average obligation per award is substantial, suggesting repeated large-scale support service commitments under this instrument.
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 = 'W52P1J21F0454'
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 |
|---|---|---|---|---|
| R706 | SUPPORT- MANAGEMENT: LOGISTICS SUPPORT | 1,688,905,979.23 | 1.69 billion | 17 |
Insight
Obligations for PIID W52P1J21F0454 are fully concentrated in PSC R706, Support- Management: Logistics Support, totaling $1.69 billion across 17 awards over the 5-year window. This indicates a narrow PSC distribution and suggests the award activity is highly focused on a single logistics support service category. The concentration in one PSC limits diversification across procurement categories within this award set.
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 = 'W52P1J21F0454'
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 | 1,507,055,902.27 | 1.51 billion | 7 |
| 2022 | 370,905,418.93 | 370.91 million | 5 |
| 2023 | -84,144,805.73 | -84.14 million | 1 |
| 2024 | -104,910,536.24 | -104.91 million | 4 |
Insight
Obligations under PIID W52P1J21F0454 are heavily concentrated in 2021, which accounts for $1.51 billion across 7 awards and materially exceeds all subsequent years. Funding drops sharply in 2022 to $370.91 million across 5 awards, then turns negative in 2023 and 2024, indicating downward net obligation activity in the later period. Award activity also remains limited overall, with only 17 awards recorded across the four years provided.
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.