Vehicle Number

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

Procurement analysis for vehicle number associated with Agency ID 1540 and PIID DJB1PC017 over the last 5 years.

This page summarizes federal award activity for vehicle number under Agency ID 1540 for PIID DJB1PC017 across the last 5 years. The record shows 15 award actions with total obligated amounts of -725.77 thousand.

Generated at 03/21/2026

Analysis period: Last 5 years

Totals are based on a readable obligated amount of -725,766.26 and an average action value of -48,384.42.

Agency ID
1540
PIID
DJB1PC017
Type
Vehicle
Total Obligated
-725.77 thousand
-725,766.26
Actions
15
Average Action Value
-48,384.42

Overview

The procurement history for vehicle number under PIID DJB1PC017 spans 15 award actions in the last 5 years. Total obligated value is negative at -725,766.26, with an average action value of -48,384.42. This indicates net downward obligation activity across the analyzed period.

How to use this page

Use this page to review the award count, obligated total, and average action value tied to vehicle number for Agency ID 1540. The figures provide a compact summary of how obligation levels changed across the last 5 years without adding unprovided contract detail.

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 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
1540 FEDERAL PRISON SYSTEM / BUREAU OF PRISONS -725,766.26 -725.77 thousand 15

Insight

Within the 5-year window for PIID DJB1PC017, all reported obligations are concentrated in a single top agency: the Federal Prison System / Bureau of Prisons. This agency accounts for 15 awards and a net total obligated amount of -$725.77 thousand, indicating a negative obligation balance rather than net positive spending. With no other agencies listed, the distribution is fully concentrated and there is no evidence of broader agency spread in the provided data.

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 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 = '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 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
561210 FACILITIES SUPPORT SERVICES -725,766.26 -725.77 thousand 15

Insight

Obligations under PIID DJB1PC017 for Agency 1540 in the 5-year window are fully concentrated in NAICS 561210, Facilities Support Services. This category accounts for 15 awards and a net obligated amount of -$725.77 thousand, indicating all recorded activity in the section is tied to a single NAICS and reflects a net deobligation. The distribution is therefore highly concentrated with no diversification across additional NAICS codes.

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 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
G004 SOCIAL- SOCIAL REHABILITATION -725,766.26 -725.77 thousand 15

Insight

Obligations under PIID DJB1PC017 are fully concentrated in PSC G004, Social-Social Rehabilitation, over the 5-year window. This PSC accounts for 15 awards and a net obligated amount of -$725,766.26, indicating consistent activity in a single service category with a negative net adjustment. The concentration suggests limited PSC diversification for this vehicle during 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 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2021 -725,766.26 -725.77 thousand 15

Insight

For PIID DJB1PC017 under Agency 1540, the 5-year annual trend data provided contains activity only in 2021. That year shows 15 awards with net obligated value of -$725.77 thousand, indicating a concentrated year of negative obligation activity rather than a multi-year distribution. Because no other years are present in the provided rows, no year-over-year trend can be assessed from this dataset.

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.