Vehicle Number

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

Vehicle number 15UC0C19D00002131 for agency 1542 shows a single award action in the last 10 years with $47.78 million obligated.

This page summarizes procurement activity for vehicle number 15UC0C19D00002131 within agency 1542 over the last 10 years. The record shows one award action with total obligated funding of $47,784,600.

Generated at 03/21/2026

Analysis period: Last 10 years

Totals reflect the readable and exact obligated values provided for this vehicle record and may vary by rounding in display fields.

Agency ID
1542
PIID
15UC0C19D00002131
Type
Vehicle
Total Obligated
47.78 million
47,784,600.00
Actions
1
Average Action Value
47,784,600.00

Overview

The available record for vehicle number 15UC0C19D00002131 is limited to a single award action in the analysis window. Total obligated funding equals $47,784,600, with an average action value of the same amount because only one action is present. For this page, the vehicle is associated with agency 1542 only as provided in the source data.

How to use this page

Use this page to review the contract-level activity tied to vehicle 15UC0C19D00002131 and to confirm the obligated total reported for the period. Because the dataset shows one action, the average action value does not represent a trend and should be read as the full award amount for that 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 = '15UC0C19D00002131'
    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 / UNICOR 47,784,600.00 47.78 million 1

Insight

Obligations for this vehicle are fully concentrated in a single agency: Federal Prison Industries / UNICOR (agency ID 1542). Over the 10-year window, one award accounts for the entire $47.78 million obligated, indicating no distribution across additional agencies in the provided data. This concentration suggests the vehicle has been used exclusively by one agency for the reported period.

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 = '15UC0C19D00002131'
        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 = '15UC0C19D00002131'
    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
337214 OFFICE FURNITURE (EXCEPT WOOD) MANUFACTURING 47,784,600.00 47.78 million 1

Insight

Obligations for PIID 15UC0C19D00002131 are fully concentrated in a single NAICS code, 337214, Office Furniture (Except Wood) Manufacturing, with $47.78 million obligated across one award over the 10-year window. This indicates no NAICS diversification in the observed period and suggests the vehicle’s activity is narrowly focused within this industrial classification.

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 = '15UC0C19D00002131'
    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
7110 OFFICE FURNITURE 47,784,600.00 47.78 million 1

Insight

Obligations under this vehicle are fully concentrated in PSC 7110, Office Furniture, with one award totaling $47.78 million over the 10-year window. This indicates a highly focused procurement profile, with no evidence in the provided data of diversification across other product or service categories. The single-award concentration suggests the vehicle is being used for a narrowly defined requirement rather than a broad mix 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 = '15UC0C19D00002131'
    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
2019 47,784,600.00 47.78 million 1

Insight

Over the 10-year window, this vehicle records a single observed obligation in 2019 totaling $47.78 million across 1 award. Obligations are fully concentrated in one year, indicating no spread or recurring activity within the provided period. This pattern suggests the vehicle functioned as a one-time obligation event rather than a sustained annual funding stream.

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.