Vehicle Number

Vehicle Number 2800 / 28321319D00060003 Federal Contract Action Summary (Last 5 Years)

Federal procurement analysis for vehicle number under agency ID 2800 and PIID 28321319D00060003 over the last 5 years.

This page summarizes award activity for vehicle number associated with agency ID 2800 and PIID 28321319D00060003 during the last 5 years. Total obligations reached 66.33 million across 13 award actions, with an average action value of 5,102,343.71.

Generated at 03/21/2026

Analysis period: Last 5 years

Obligation totals are reported as 66,330,468.19 exact and 66.33 million readable, based on 13 award actions in the analysis window.

Agency ID
2800
PIID
28321319D00060003
Type
Vehicle
Total Obligated
66.33 million
66,330,468.19
Actions
13
Average Action Value
5,102,343.71

Overview

The record covers 13 award actions tied to vehicle number for agency ID 2800 and PIID 28321319D00060003. Total obligated amount is 66,330,468.19, with an average action value of 5,102,343.71 over the last 5 years. These figures support a focused review of award volume and obligation concentration within the analysis window.

How to use this page

Use this page to review the obligation history and award cadence for this vehicle record. The totals and averages can help compare this PIID against other procurement records, track activity over time, and support query-based analysis.

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 = '2800' AND content__IDV__contractID__IDVID__PIID = '28321319D00060003'
    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
2800 SOCIAL SECURITY ADMINISTRATION 66,330,468.19 66.33 million 13

Insight

Within the 5-year window for PIID 28321319D00060003, all reported obligations are concentrated in a single agency: the Social Security Administration. The agency account totals $66.33 million across 13 awards, indicating the vehicle’s activity is fully attributable to SSA in the provided data. This concentration suggests the vehicle has been used exclusively, or at least reported exclusively here, for SSA obligations over the 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 = '2800' AND content__IDV__contractID__IDVID__PIID = '28321319D00060003'
        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 = '2800' AND content__IDV__contractID__IDVID__PIID = '28321319D00060003'
    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
561612 SECURITY GUARDS AND PATROL SERVICES 66,330,468.19 66.33 million 13

Insight

Obligations under this vehicle are fully concentrated in NAICS 561612, Security Guards and Patrol Services, with $66.33 million across 13 awards over the 5-year window. This indicates a highly focused procurement profile, with no evidence in the provided data of diversification across other NAICS codes. The award count suggests repeated use of the vehicle within the same service category rather than broad category coverage.

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 = '2800' AND content__IDV__contractID__IDVID__PIID = '28321319D00060003'
    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
R430 SUPPORT- PROFESSIONAL: PHYSICAL SECURITY AND BADGING 66,330,468.19 66.33 million 13

Insight

Over the 5-year window, vehicle PIID 28321319D00060003 is concentrated entirely in PSC R430, Support- Professional: Physical Security and Badging. This PSC accounts for the full $66.33 million obligated across 13 awards, indicating a consistent award pattern within a single service category. The absence of other PSCs in the provided rows suggests no observed diversification in this section for the period reviewed.

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 = '2800' AND content__IDV__contractID__IDVID__PIID = '28321319D00060003'
    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 24,896,703.12 24.90 million 2
2022 23,378,786.13 23.38 million 5
2023 18,042,912.90 18.04 million 4
2024 12,066.04 12.07 thousand 2

Insight

Obligations under PIID 28321319D00060003 were concentrated in 2021–2023, with annual funding declining from $24.90 million in 2021 to $23.38 million in 2022 and $18.04 million in 2023. Award activity was relatively low and uneven across the period, ranging from 2 to 5 awards per year, with the highest count in 2022. In 2024, obligated dollars fell to $12.07 thousand across 2 awards, indicating a sharp reduction in annual funding within the five-year window.

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.