Award Number

Award Number 9700 / W52P1J21F0454 Federal Contract Action Summary (Last 10 Years)

Procurement award page for award number W52P1J21F0454 under agency ID 9700, showing obligation and action history over the last 10 years.

This page summarizes the award record for PIID W52P1J21F0454 for agency ID 9700 over the last 10 years. The record includes 17 award actions with total obligations of 1.69 billion dollars and an average action value of 99.35 million dollars.

Generated at 03/20/2026

Analysis period: Last 10 years

Amounts are shown as provided, with readable totals rounded from the exact obligation figure of 1,688,905,979.23.

Agency ID
9700
PIID
W52P1J21F0454
Type
Award
Total Obligated
1.69 billion
1,688,905,979.23
Actions
17
Average Action Value
99,347,410.54

Overview

The award record for W52P1J21F0454 covers 17 actions in the last 10 years and totals 1,688,905,979.23 in obligated dollars. The average value per action is 99,347,410.54, which gives a basic measure of the award’s action-level scale. This page is focused on the award identifier and its obligation history as reported.

How to use this page

Use this page to review the award’s total obligations, action count, and average action value in one place. It is suitable for quick reference when checking the financial footprint of PIID W52P1J21F0454 across the available 10-year 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 = 'W52P1J21F0454'
    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,688,905,979.23 1.69 billion 17

Insight

Within the 10-year window for PIID W52P1J21F0454, all reported obligation activity in the top_agencies section is concentrated in DEPT OF THE ARMY (agency 2100). This agency accounts for $1.69 billion across 17 awards, indicating a highly concentrated obligation profile rather than a broad distribution across multiple agencies. The limited agency spread suggests this award’s funding history is dominated by a single ordering agency.

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 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
KBR SERVICES, LLC 3GJU9 1,688,905,979.23 1.69 billion 17

Insight

KBR SERVICES, LLC is the sole top vendor for PIID W52P1J21F0454 over the 10-year window, accounting for all identified obligated value in this section. The vendor received 17 awards totaling $1.69 billion, indicating a highly concentrated obligation pattern with no diversification across other vendors in the provided results.

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 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
561210 FACILITIES SUPPORT SERVICES 1,688,905,979.23 1.69 billion 17

Insight

Obligations for PIID W52P1J21F0454 are fully concentrated in NAICS 561210, Facilities Support Services, with $1.69 billion obligated across 17 awards over the 10-year window. This indicates a narrow procurement profile centered on a single service category rather than a diversified NAICS mix. The average obligation per award is substantial, suggesting repeated large-scale facilities support requirements 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 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
R706 SUPPORT- MANAGEMENT: LOGISTICS SUPPORT 1,688,905,979.23 1.69 billion 17

Insight

Within the 10-year window, award PIID W52P1J21F0454 is fully concentrated in PSC R706, Support-Management: Logistics Support. This PSC accounts for $1.69 billion across 17 awards, indicating a sustained and highly focused procurement pattern rather than broad PSC distribution. The concentration suggests logistics support has been the dominant requirement under this award record.

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 10 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 for PIID W52P1J21F0454 are highly concentrated in 2021, which accounts for 1.51 billion across 7 awards and far exceeds later years. Funding then declines sharply in 2022 to 370.91 million across 5 awards, followed by net negative obligations in 2023 and 2024, indicating significant downward movement in annual obligated value. Award activity also contracts after 2022, with only 1 award in 2023 and 4 in 2024, suggesting a reduced and less stable obligation pattern over the period.

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.