Award Number

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

FPDS award record for award number W912PL19C0015 under agency ID 9700, showing one action in the last full year.

This page summarizes the award-level procurement activity for W912PL19C0015 over the last full year. The record shows one award action with total obligated amount of -$274.81 million.

Generated at 03/20/2026

Analysis period: Last full year

Dollar amounts are based on the provided FPDS totals and may reflect negative obligated value in the reporting period.

Agency ID
9700
PIID
W912PL19C0015
Type
Award
Total Obligated
-274.81 million
-274,805,467.25
Actions
1
Average Action Value
-274,805,467.25

Overview

For the last full year, award W912PL19C0015 shows a single recorded action with total obligated value of -$274,805,467.25. The average action value matches the total because only one action is included in the analysis window. This page is focused on the award number as the primary identifier for the record.

How to use this page

Use this page to review the award-level obligation total and the count of actions reported for the selected period. It is most useful for quick validation of the award record, period-specific activity, and comparison against other FPDS award pages.

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 = 'W912PL19C0015'
    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 -274,805,467.25 -274.81 million 1

Insight

Obligations for PIID W912PL19C0015 over the 1-year window are entirely concentrated in DEPT OF THE ARMY (agency_id 2100). The reported total obligated is -$274.81 million across 1 award, indicating a single-award distribution with a substantial negative obligated amount. No other top-agency entries are provided, so concentration appears complete within the supplied rows.

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 = 'W912PL19C0015'
        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
SOUTHWEST VALLEY CONSTRUCTORS CO 7V2D3 -274,805,467.25 -274.81 million 1

Insight

Obligations for PIID W912PL19C0015 in the 1-year window are fully concentrated with a single vendor, SOUTHWEST VALLEY CONSTRUCTORS CO (CAGE 7V2D3), accounting for one award. The reported total obligated is -$274.81 million, indicating a large negative obligation associated with this vendor during the period. With only one vendor represented, there is no observed distribution across multiple recipients for this award.

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 = 'W912PL19C0015'
    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
237310 HIGHWAY, STREET, AND BRIDGE CONSTRUCTION -274,805,467.25 -274.81 million 1

Insight

The award’s obligations are fully concentrated in NAICS 237310, Highway, Street, and Bridge Construction, with one record accounting for the entire 1-year total. The only reported obligation is a negative $274.81 million, indicating a substantial de-obligation or downward adjustment rather than new funding. Because no other NAICS codes appear in this window, there is no diversification across industry sectors for this award.

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 = 'W912PL19C0015'
    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
Y1LB CONSTRUCTION OF HIGHWAYS, ROADS, STREETS, BRIDGES, AND RAILWAYS -274,805,467.25 -274.81 million 1

Insight

Obligations in the past year are fully concentrated in PSC Y1LB, Construction of Highways, Roads, Streets, Bridges, and Railways, with one award accounting for the entire reported amount. The award reflects negative obligations of $274.81 million, indicating a substantial downward adjustment or deobligation within this PSC. With only a single PSC represented, there is no observable distribution across product or service categories for this award in the 1-year window.

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 = 'W912PL19C0015'
    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 -274,805,467.25 -274.81 million 1

Insight

For PIID W912PL19C0015, the 1-year annual trend shows all reported obligated dollars concentrated in a single award in FY 2025. The reported total obligated amount is negative $274.81 million, indicating a substantial downward adjustment or de-obligation within that year. Because only one award is represented, there is no year-over-year distribution across multiple observations in the provided window.

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.