Vehicle Number

Vehicle Number 1501 / DJJODT9C0001 Federal Contract Action Summary (Last 5 Years)

Procurement summary for vehicle number under Agency 1501 for PIID DJJODT9C0001, covering the last 5 years of award activity.

This page presents federal procurement activity associated with vehicle number for Agency 1501 under PIID DJJODT9C0001 over the last 5 years. The record shows 65 award actions with total obligated funding of 924.42 million.

Generated at 03/20/2026

Analysis period: Last 5 years

Totals reflect the provided analysis window and include total obligated exact value of 924,421,191.8 and average action value of 14,221,864.49.

Agency ID
1501
PIID
DJJODT9C0001
Type
Vehicle
Total Obligated
924.42 million
924,421,191.80
Actions
65
Average Action Value
14,221,864.49

Overview

Over the last 5 years, the procurement record for vehicle number under Agency 1501 and PIID DJJODT9C0001 includes 65 award actions. The total obligated amount is 924,421,191.8, with an average action value of 14,221,864.49. This page is structured to support review of award activity tied to the identified vehicle.

How to use this page

Use this page to review the obligation profile and action volume associated with the vehicle record. The values shown can support basic analysis of award concentration, funding scale, and activity level during the stated period.

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 = '1501' AND content__IDV__contractID__IDVID__PIID = 'DJJODT9C0001'
    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
1544 U.S. MARSHALS SERVICE 924,421,191.80 924.42 million 65

Insight

Over the 5-year window, the U.S. Marshals Service accounts for the full reported obligation total in this section, with $924.42 million across 65 awards. This indicates a highly concentrated funding pattern, with obligations for PIID DJJODT9C0001 attributable to a single agency in the provided data. The distribution suggests limited agency spread and a dominant reliance on this vehicle by the U.S. Marshals Service.

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 = '1501' AND content__IDV__contractID__IDVID__PIID = 'DJJODT9C0001'
        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 = '1501' AND content__IDV__contractID__IDVID__PIID = 'DJJODT9C0001'
    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
922190 OTHER JUSTICE, PUBLIC ORDER, AND SAFETY ACTIVITIES 924,421,191.80 924.42 million 65

Insight

Over the 5-year window, obligations under PIID DJJODT9C0001 are fully concentrated in NAICS 922190, Other Justice, Public Order, and Safety Activities. This NAICS accounts for $924.42 million across 65 awards, indicating a highly focused procurement pattern with no diversification across other NAICS codes in the provided data. Such concentration suggests the vehicle is used primarily for a single mission-aligned service category.

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 = '1501' AND content__IDV__contractID__IDVID__PIID = 'DJJODT9C0001'
    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
R499 SUPPORT- PROFESSIONAL: OTHER 924,421,191.80 924.42 million 65

Insight

Over the 5-year window, obligations under PIID DJJODT9C0001 are fully concentrated in PSC R499, Support- Professional: Other, with $924.42 million across 65 awards. This indicates a narrow service mix and a strong dependence on a single PSC category for the vehicle. The concentration suggests limited distribution across PSCs within this award history.

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 = '1501' AND content__IDV__contractID__IDVID__PIID = 'DJJODT9C0001'
    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 175,265,589.12 175.27 million 12
2022 186,198,317.26 186.20 million 17
2023 200,720,833.25 200.72 million 15
2024 203,776,381.81 203.78 million 13
2025 158,460,070.36 158.46 million 8

Insight

Obligations for PIID DJJODT9C0001 increased steadily from 2021 through 2024, rising from $175.27 million to $203.78 million, before declining to $158.46 million in 2025. Award activity was highest in 2022 at 17 awards, then generally trended downward to 8 awards in 2025, indicating a tighter annual distribution of awards in the most recent year. Overall, the series suggests a gradual build-up in obligated volume through 2024 followed by a notable reduction in both obligations and award count in 2025.

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.