Vehicle Number

Vehicle Number 1542 / 15UC0C21D00000572 Federal Contract Action Summary (Last 5 Years)

FPDS analysis for vehicle number 15UC0C21D00000572 at agency 1542 covers the last 5 years of award activity and obligation totals.

This page summarizes federal procurement activity for vehicle number 15UC0C21D00000572 under agency ID 1542. Over the last 5 years, the record shows 8 award actions and $68.92 million in total obligations.

Generated at 03/21/2026

Analysis period: Last 5 years

Totals reflect a readable amount of $68.92 million and an exact obligated value of 68,916,981.

Agency ID
1542
PIID
15UC0C21D00000572
Type
Vehicle
Total Obligated
68.92 million
68,916,981.00
Actions
8
Average Action Value
8,614,622.63

Overview

The procurement record for vehicle number 15UC0C21D00000572 shows 8 award actions in the last 5 years, with total obligations of $68,916,981. The average action value is $8,614,622.63, which provides a simple measure of how obligation value is distributed across the recorded actions.

How to use this page

Use this page to review the size and frequency of award activity tied to this vehicle record under agency ID 1542. The figures are suitable for quick FPDS reference, including obligation totals, action count, and average action value.

Top Agencies

SELECT
    content__IDV__purchaserInformation__contractingOfficeAgencyID AS agency_id,
    content__IDV__purchaserInformation__contractingOfficeAgencyID__name AS agency_name,
    sum(content__IDV__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__IDV__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__IDV__contractID__IDVID__agencyID = '1542' AND content__IDV__contractID__IDVID__PIID = '15UC0C21D00000572'
    AND content__IDV__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
    AND content__IDV__purchaserInformation__contractingOfficeAgencyID != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__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
1542 FEDERAL PRISON INDUSTRIES / UNICOR 70,000,000.00 70.00 million 1
1542 FEDERAL PRISON INDUSTRIES, INC. -1,083,019.00 -1.08 million 7

Insight

Obligations for this vehicle are highly concentrated at agency ID 1542. One entry under FEDERAL PRISON INDUSTRIES / UNICOR accounts for $70.00 million across 1 award, while FEDERAL PRISON INDUSTRIES, INC. records a net -$1.08 million across 7 awards, indicating offsetting adjustments or deobligations within the same agency family. Over the 5-year window, the distribution is dominated by a single large obligation rather than broad award activity.

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__IDV__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        content__IDV__contractID__IDVID__agencyID = '1542' AND content__IDV__contractID__IDVID__PIID = '15UC0C21D00000572'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
        AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY
        vendor_name,
        cage_code
)
ORDER BY total_obligated DESC
LIMIT 10
Vendor CAGE Code Total Obligated Readable Actions

Insight

No vendor concentration was available for this analysis window.

Top NAICS

SELECT
    content__IDV__productOrServiceInformation__principalNAICSCode AS naics_code,
    content__IDV__productOrServiceInformation__principalNAICSCode__description AS naics_name,
    sum(content__IDV__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__IDV__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__IDV__contractID__IDVID__agencyID = '1542' AND content__IDV__contractID__IDVID__PIID = '15UC0C21D00000572'
    AND content__IDV__productOrServiceInformation__principalNAICSCode IS NOT NULL
    AND content__IDV__productOrServiceInformation__principalNAICSCode != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
    naics_code,
    naics_name
ORDER BY total_obligated DESC
LIMIT 10
NAICS Code Description Total Obligated Readable Actions
236210 INDUSTRIAL BUILDING CONSTRUCTION 68,916,981.00 68.92 million 8

Insight

Obligations for this vehicle are fully concentrated in NAICS 236210, Industrial Building Construction, with $68.92 million across 8 awards over the 5-year window. This indicates a narrow procurement focus within a single construction category rather than a diversified NAICS mix. The volume of awards suggests repeated activity under the vehicle, but no distribution across additional NAICS codes is evident from the provided data.

Top PSC Codes

SELECT
    content__IDV__productOrServiceInformation__productOrServiceCode AS psc_code,
    content__IDV__productOrServiceInformation__productOrServiceCode__description AS psc_name,
    sum(content__IDV__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__IDV__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__IDV__contractID__IDVID__agencyID = '1542' AND content__IDV__contractID__IDVID__PIID = '15UC0C21D00000572'
    AND content__IDV__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__IDV__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
    psc_code,
    psc_name
ORDER BY total_obligated DESC
LIMIT 10
PSC Code Description Total Obligated Readable Actions
Y1EZ CONSTRUCTION OF OTHER INDUSTRIAL BUILDINGS 68,916,981.00 68.92 million 8

Insight

Within the 5-year window for PIID 15UC0C21D00000572, obligations are fully concentrated in PSC Y1EZ, Construction of Other Industrial Buildings, totaling $68.92 million across 8 awards. This indicates a narrow procurement profile with no diversification across other PSCs in the provided data. The award pattern suggests repeated funding under a single construction-related product/service category rather than a broadly distributed vehicle usage profile.

Annual Trend

SELECT
    toYear(parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate)) AS year,
    sum(content__IDV__dollarValues__obligatedAmount) AS total_obligated,
    formatReadableQuantity(sum(content__IDV__dollarValues__obligatedAmount)) AS total_obligated_readable,
    count() AS award_count
FROM fpds.data
WHERE
    content__IDV__contractID__IDVID__agencyID = '1542' AND content__IDV__contractID__IDVID__PIID = '15UC0C21D00000572'
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2021 70,000,000.00 70.00 million 1
2024 -1,083,019.00 -1.08 million 7

Insight

Obligations for PIID 15UC0C21D00000572 are highly concentrated in 2021, when a single award accounted for $70.00 million across one award action. In 2024, activity increased to seven awards, but net obligations were negative at $1.08 million, indicating deobligations or downward adjustments outweighed new obligations. Over the 5-year window, the pattern reflects a shift from a large initial obligation to smaller, net negative activity in the later 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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.