Award Number

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

Federal procurement award page for award number W52P1J19F0394 under agency ID 9700, covering the last 10 years of obligation activity.

This page summarizes the federal award identified by PIID W52P1J19F0394 and its obligation history over the last 10 years. It includes total obligated value, action count, and average action value for agency ID 9700.

Generated at 03/20/2026

Analysis period: Last 10 years

Figures reflect the provided analysis window and rounded and exact obligated totals, with 91 recorded actions and an average action value of 24,528,623.39.

Agency ID
9700
PIID
W52P1J19F0394
Type
Award
Total Obligated
2.23 billion
2,232,104,728.83
Actions
91
Average Action Value
24,528,623.39

Overview

The award number W52P1J19F0394 shows $2,232,104,728.83 in total obligated value across 91 actions in the last 10 years. The average action value is $24,528,623.39, indicating a high-value obligation profile over the review period. This page is organized to support quick review of award-level spending history for agency ID 9700.

How to use this page

Use this page to review obligation totals, action volume, and average action value for award W52P1J19F0394. The data can help compare award activity across time, identify concentration in obligations, and support procurement analysis for 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 = 'W52P1J19F0394'
    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 2,232,104,728.83 2.23 billion 91

Insight

Obligations for this award are fully concentrated in one agency: the Department of the Army, which accounts for $2.23 billion across 91 actions over the 10-year window. This indicates a single-agency funding and execution pattern rather than a distributed award footprint. The award’s activity is therefore highly concentrated, with no evidence in the provided data of obligations to other agencies.

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 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 2,076,532,539.49 2.08 billion 76
KELLOGG BROWN & ROOT SERVICES, INC. 3GJU9 155,572,189.34 155.57 million 15

Insight

Award obligations are highly concentrated with KBR SERVICES, LLC, which accounts for $2.08 billion across 76 awards in the 10-year window. KELLOGG BROWN & ROOT SERVICES, INC. is a secondary recipient with $155.57 million across 15 awards, representing a much smaller share of obligated value. Both entries share the same CAGE code (3GJU9), indicating the obligations are concentrated within closely related vendor identifiers.

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 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 2,232,104,728.83 2.23 billion 91

Insight

Obligations for PIID W52P1J19F0394 over the 10-year window are fully concentrated in NAICS 561210, Facilities Support Services. The award records 91 actions in this NAICS, totaling $2.23 billion, indicating a high degree of concentration in a single service category rather than a diversified obligation mix.

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 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 2,232,104,728.83 2.23 billion 91

Insight

Obligations are fully concentrated in PSC R706, Support- Management: Logistics Support, with $2.23 billion across 91 awards over the 10-year window. This indicates a highly focused procurement profile for this award, with no visible PSC diversification in the provided data. The volume of awards suggests repeated use of the same service category rather than a one-time obligation pattern.

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 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2019 4,709,183.80 4.71 million 1
2020 99,524,099.51 99.52 million 7
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 under PIID W52P1J19F0394 were highly concentrated in the later years of the period, rising from 4.71 million in 2019 to 99.52 million in 2020 and 270.78 million in 2021. Funding remained elevated in 2022 at 246.22 million, then increased sharply in 2023 and 2024 to 642.51 million and 652.46 million, respectively, before declining to 315.90 million in 2025. Award counts also expanded from 1 in 2019 to a peak of 19 in 2023, with 14 to 18 awards annually from 2021 through 2025, indicating a sustained multi-award pattern during the higher-obligation years.

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.