Vehicle Number

Vehicle Number 1540 / DJB1PC017 Federal Contract Action Summary (Last 10 Years)

Vehicle number record for PIID DJB1PC017 under agency 1540, showing award activity over the last 10 years.

This page summarizes federal procurement activity for the vehicle identified as vehicle number under PIID DJB1PC017. Across the last 10 years, it includes 147 award actions with total obligated funding of 173.10 million.

Generated at 03/21/2026

Analysis period: Last 10 years

Total obligated amounts are shown as 173,101,343.59 and the average action value is 1,177,560.16.

Agency ID
1540
PIID
DJB1PC017
Type
Vehicle
Total Obligated
173.10 million
173,101,343.59
Actions
147
Average Action Value
1,177,560.16

Overview

The record covers 147 award actions in the last 10 years for agency 1540 under PIID DJB1PC017. Total obligated funding is 173,101,343.59, with an average action value of 1,177,560.16.

How to use this page

Use this page to review the scale and cadence of obligated activity tied to this vehicle record. The totals and action count provide a compact view of procurement volume over the analysis window.

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 = '1540' AND content__IDV__contractID__IDVID__PIID = 'DJB1PC017'
    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
1540 FEDERAL PRISON SYSTEM / BUREAU OF PRISONS 173,191,363.77 173.19 million 138
1540 FEDERAL PRISON SYSTEM -90,020.18 -90.02 thousand 9

Insight

For PIID DJB1PC017 over the 10-year window, obligations are highly concentrated in the FEDERAL PRISON SYSTEM / BUREAU OF PRISONS, which accounts for $173.19 million across 138 awards. The only other listed agency variant, FEDERAL PRISON SYSTEM, shows a negligible net negative obligation of $90.02 thousand across 9 awards. This indicates the vehicle’s activity is overwhelmingly associated with one agency line, with minimal offsetting activity under the alternate agency label.

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 = '1540' AND content__IDV__contractID__IDVID__PIID = 'DJB1PC017'
        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 = '1540' AND content__IDV__contractID__IDVID__PIID = 'DJB1PC017'
    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
561210 FACILITIES SUPPORT SERVICES 173,101,343.59 173.10 million 147

Insight

Over the 10-year window, obligations for vehicle PIID DJB1PC017 are fully concentrated in NAICS 561210, Facilities Support Services, with $173.10 million across 147 awards. This indicates a single-industry funding profile rather than a distributed NAICS mix. The award count suggests repeated use of this category over time, but no other NAICS codes are present in the provided data to indicate diversification.

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 = '1540' AND content__IDV__contractID__IDVID__PIID = 'DJB1PC017'
    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
G004 SOCIAL- SOCIAL REHABILITATION 173,101,343.59 173.10 million 147

Insight

Over the 10-year window, obligations for vehicle PIID DJB1PC017 are fully concentrated in PSC G004, Social-Social Rehabilitation. The award is supported by 147 actions totaling $173.10 million, indicating sustained procurement activity in a single PSC category rather than a diversified mix. This concentration suggests the vehicle has been used consistently for the same service type across the period.

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 = '1540' AND content__IDV__contractID__IDVID__PIID = 'DJB1PC017'
    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
2016 33,515,626.81 33.52 million 23
2017 34,214,095.17 34.21 million 25
2018 34,619,638.75 34.62 million 28
2019 34,814,802.06 34.81 million 24
2020 36,662,947.06 36.66 million 32
2021 -725,766.26 -725.77 thousand 15

Insight

Obligations under PIID DJB1PC017 were concentrated in 2016–2020, with annual totals ranging from $33.52 million to $36.66 million and award counts generally between 23 and 32. The pattern is relatively steady through 2020, with a modest increase in obligations and a peak in 2020. In 2021, obligations dropped sharply to -$725.77 thousand and award count fell to 15, indicating a material year-over-year disruption or downward adjustment in the award’s obligation profile.

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.