Award Number

Award Number 9700 / W52P1J19F0394 Federal Contract Action Summary (Last 5 Years)

Federal procurement award record for award number W52P1J19F0394 under agency ID 9700, showing obligations and action activity over the last 5 years.

This page summarizes the award identified by PIID W52P1J19F0394 for agency ID 9700 across the last 5 years. The record reflects 83 award actions and total obligations of 2.13 billion dollars, with an average action value of 25,637,005.37.

Generated at 03/20/2026

Analysis period: Last 5 years

Totals reflect the provided 5-year analysis window and the exact obligated amount of 2,127,871,445.52.

Agency ID
9700
PIID
W52P1J19F0394
Type
Award
Total Obligated
2.13 billion
2,127,871,445.52
Actions
83
Average Action Value
25,637,005.37

Overview

The award record for PIID W52P1J19F0394 shows 83 actions within the last 5 years and total obligated funding of 2,127,871,445.52. The average action value across the period is 25,637,005.37, which provides a basic measure of action-level scale for this award. This page is limited to the supplied award identifier, agency ID, and obligation metrics.

How to use this page

Use this page to review the award’s obligation total, action count, and average action value over the stated analysis window. It is suitable for procurement analysis that needs a direct reference to award number W52P1J19F0394 under agency ID 9700 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 = 'W52P1J19F0394'
    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 2,127,871,445.52 2.13 billion 83

Insight

Obligations are fully concentrated in a single top agency: the Department of the Army, with $2.13 billion across 83 awards over the 5-year window. This indicates a highly concentrated award profile for PIID W52P1J19F0394, with no other agencies appearing in the provided rows. The concentration suggests the award activity is primarily driven by Army demand rather than a broad multi-agency distribution.

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 = 'W52P1J19F0394'
        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 2,076,532,539.49 2.08 billion 76
KELLOGG BROWN & ROOT SERVICES, INC. 3GJU9 51,338,906.03 51.34 million 7

Insight

Obligations under PIID W52P1J19F0394 are highly concentrated with KBR SERVICES, LLC, which accounts for $2.08 billion across 76 awards in the 5-year window. KELLOGG BROWN & ROOT SERVICES, INC. represents a much smaller share, with $51.34 million across 7 awards. Both entries share the same CAGE code (3GJU9), indicating the obligations are concentrated within a single vendor identifier despite the different vendor names.

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 = 'W52P1J19F0394'
    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 2,127,871,445.52 2.13 billion 83

Insight

Over the 5-year window, obligations for award W52P1J19F0394 are fully concentrated in NAICS 561210, Facilities Support Services, with $2.13 billion across 83 awards. This indicates a narrow industrial mix and a strong dependence on a single service category. The concentration suggests this award activity is highly specialized rather than broadly distributed across multiple NAICS codes.

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 = 'W52P1J19F0394'
    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 2,127,871,445.52 2.13 billion 83

Insight

Obligations for PIID W52P1J19F0394 are fully concentrated in PSC R706, Support- Management: Logistics Support, totaling $2.13 billion across 83 awards over the 5-year window. This indicates a highly focused procurement profile with no observable PSC diversification in the provided data. The volume and obligation level suggest this PSC is the dominant driver of award activity for the entity in scope.

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 = 'W52P1J19F0394'
    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 270,776,440.63 270.78 million 18
2022 246,222,731.03 246.22 million 16
2023 642,509,960.89 642.51 million 19
2024 652,464,011.34 652.46 million 14
2025 315,898,301.63 315.90 million 16

Insight

Obligations for PIID W52P1J19F0394 are concentrated in 2023 and 2024, which together account for the highest annual spending in the 5-year window at 642.51 million and 652.46 million, respectively. Activity was comparatively lower in 2021 and 2022 at 270.78 million and 246.22 million, then rose sharply in 2023 before easing in 2025 to 315.90 million. Award counts remain relatively stable overall, ranging from 14 to 19 per year, indicating that the obligation volatility is driven more by award value than by changes in award frequency.

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.