Award Number

Award Number 9700 / W52P1J09C0013 Federal Contract Action Summary (Last Year)

Federal procurement award record for PIID W52P1J09C0013 under agency ID 9700, showing activity from the last full year.

This page summarizes award activity for award number W52P1J09C0013 under agency ID 9700 during the last full year. The record reflects 12 award actions with total obligations of $229.39 million.

Generated at 03/20/2026

Analysis period: Last full year

Totals are based on the provided readable obligation amount of $229.39 million and the exact value of $229,388,501.43.

Agency ID
9700
PIID
W52P1J09C0013
Type
Award
Total Obligated
229.39 million
229,388,501.43
Actions
12
Average Action Value
19,115,708.45

Overview

For the last full year, award number W52P1J09C0013 shows 12 award actions and total obligations of $229,388,501.43. The average action value was $19,115,708.45, which provides a simple measure of activity across the reporting window. This page is organized for review of the award record only and does not add unprovided contract details.

How to use this page

Use this page to identify the award by PIID, confirm the agency ID, and compare total obligations with the number of actions recorded in the analysis window. The average action value can help frame the scale of each action when reviewing the award history for the last full year.

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 = 'W52P1J09C0013'
    AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
    AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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 229,388,501.43 229.39 million 12

Insight

Within the 1-year window for award PIID W52P1J09C0013, obligation is fully concentrated in a single top agency row: DEPT OF THE ARMY. That agency accounts for $229.39 million across 12 awards, indicating a focused obligation distribution rather than spread across multiple 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 = 'W52P1J09C0013'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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
BECHTEL PARSONS BLUE GRASS, A JOINT VENTURE 3FT89 229,388,501.43 229.39 million 12

Insight

Obligations for PIID W52P1J09C0013 in the 1-year window are fully concentrated in a single vendor. BECHTEL PARSONS BLUE GRASS, A JOINT VENTURE (CAGE 3FT89) accounted for $229.39 million across 12 awards, indicating a high degree of vendor concentration under this award. This pattern suggests the contract activity is consistently directed to one prime recipient rather than distributed across multiple vendors.

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 = 'W52P1J09C0013'
    AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
    AND content__award__productOrServiceInformation__principalNAICSCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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
562211 HAZARDOUS WASTE TREATMENT AND DISPOSAL 229,388,501.43 229.39 million 12

Insight

Over the 1-year window, obligations for award W52P1J09C0013 are fully concentrated in NAICS 562211, Hazardous Waste Treatment and Disposal. This NAICS accounts for $229.39 million across 12 awards, indicating a highly concentrated obligation profile with no other NAICS codes represented in the provided data. The distribution suggests this award’s activity is narrowly focused on hazardous waste treatment and disposal services.

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 = 'W52P1J09C0013'
    AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__award__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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
F108 ENVIRONMENTAL SYSTEMS PROTECTION- ENVIRONMENTAL REMEDIATION 229,388,501.43 229.39 million 12

Insight

Obligations on this award are fully concentrated in PSC F108, Environmental Systems Protection – Environmental Remediation, with $229.39 million across 12 awards/actions in the 1-year window. This indicates a highly focused procurement profile centered on environmental remediation work rather than a diversified mix of products or services. The distribution suggests this PSC is the primary driver of obligated value for PIID W52P1J09C0013 during the period analyzed.

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 = 'W52P1J09C0013'
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 229,388,501.43 229.39 million 12

Insight

Within the 1-year window, award PIID W52P1J09C0013 shows $229.39 million obligated across 12 awards in FY2025. Obligations are concentrated in a single year, with no other annual data provided for comparison in this view. The average obligation per award is approximately $19.1 million, indicating relatively large individual award values within the observed 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 full year view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.