Vehicle Number

Vehicle Number 1542 / 15UC0C21D00000995 Federal Contract Action Summary (Last 10 Years)

Federal procurement profile for vehicle number under agency 1542 and PIID 15UC0C21D00000995, covering the last 10 years.

This page summarizes obligations tied to vehicle number for agency 1542 during the last 10 years. The record shows one award action with total obligated value of 32.97 million.

Generated at 03/21/2026

Analysis period: Last 10 years

All values reflect the provided FPDS analysis inputs, including total obligated exact amount of 32,966,100 and an average action value of 32,966,100.

Agency ID
1542
PIID
15UC0C21D00000995
Type
Vehicle
Total Obligated
32.97 million
32,966,100.00
Actions
1
Average Action Value
32,966,100.00

Overview

The procurement record for vehicle number under agency 1542 and PIID 15UC0C21D00000995 falls within the last 10 years of activity. The dataset shows a single award action with total obligations of 32,966,100, which is also the average action value because only one action is present.

How to use this page

This page is intended to support review of the obligation amount, award count, and PIID-level record for this vehicle entry. Because the analysis window contains one action, the total and average values are the same and should be read as a single-obligation record.

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 = '15UC0C21D00000995'
    AND content__IDV__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
    AND content__IDV__purchaserInformation__contractingOfficeAgencyID != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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, INC. 32,966,100.00 32.97 million 1

Insight

For PIID 15UC0C21D00000995 over the 10-year window, obligations are fully concentrated in a single vehicle record tied to FEDERAL PRISON INDUSTRIES, INC. The award count is 1, indicating no distribution across additional agencies or vehicles within the provided data. Total obligated amounts to 32.97 million, so this vehicle represents the entire observed obligation base for Agency ID 1542 in this query scope.

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 = '15UC0C21D00000995'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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 = '15UC0C21D00000995'
    AND content__IDV__productOrServiceInformation__principalNAICSCode IS NOT NULL
    AND content__IDV__productOrServiceInformation__principalNAICSCode != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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
337215 SHOWCASE, PARTITION, SHELVING, AND LOCKER MANUFACTURING 32,966,100.00 32.97 million 1

Insight

Obligations under PIID 15UC0C21D00000995 are fully concentrated in a single NAICS code, 337215, with $32.97 million obligated over the 10-year window. This reflects a highly concentrated procurement profile, with one award accounting for the entirety of the reported obligated amount and no diversification across other NAICS categories in 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 = '15UC0C21D00000995'
    AND content__IDV__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__IDV__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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
2540 VEHICULAR FURNITURE AND ACCESSORIES 32,966,100.00 32.97 million 1

Insight

Obligations are fully concentrated in PSC 2540, Vehicular Furniture and Accessories, with one award totaling $32.97 million over the 10-year window. This indicates a highly concentrated product mix for this vehicle, with no evidence of PSC diversification in the provided data. The single-award pattern suggests the obligation profile is driven by one procurement action rather than a broad distribution of buys.

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 = '15UC0C21D00000995'
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2021 32,966,100.00 32.97 million 1

Insight

Over the 10-year window, this vehicle shows a single recorded obligation in FY2021 totaling $32.97 million across one award. Obligations are fully concentrated in that year, with no observed annual distribution across other years in the provided data. This indicates a point-in-time funding profile rather than a sustained annual trend.

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.