Vehicle Number

Vehicle Number 2800 / 28321320D00060005 Federal Contract Action Summary (Last 5 Years)

Analysis of vehicle number 28321320D00060005 for Agency ID 2800 over the last 5 years shows 15 award actions and $35.74 million in total obligations.

This page summarizes federal procurement activity for vehicle number 28321320D00060005 under Agency ID 2800. The record reflects 15 award actions and an average action value of $2.38 million.

Generated at 03/21/2026

Analysis period: Last 5 years

Total obligated is shown as $35,742,149.22 and rounded in summary views to $35.74 million.

Agency ID
2800
PIID
28321320D00060005
Type
Vehicle
Total Obligated
35.74 million
35,742,149.22
Actions
15
Average Action Value
2,382,809.95

Overview

Over the last 5 years, vehicle number 28321320D00060005 is associated with $35,742,149.22 in obligated value across 15 award actions. The average action value is $2,382,809.95, which provides a concise view of the contract’s scale during the analysis window.

How to use this page

Use this page to review the obligation history tied to vehicle number 28321320D00060005 and to compare its action count and average value against other federal procurement records. The figures are limited to the provided analysis window and do not infer terms, scope, or performance beyond the recorded award activity.

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 = '28321320D00060005'
    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 35,742,149.22 35.74 million 15

Insight

Over the 5-year window, the Social Security Administration accounts for $35.74 million in obligated value across 15 awards under PIID 28321320D00060005. This indicates a concentrated award pattern within a single agency, with an average obligated value of roughly $2.38 million per award. No other agency is listed in the provided rows, so the available data reflect complete concentration at SSA for this query result.

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 = '28321320D00060005'
        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 = '28321320D00060005'
    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
238220 PLUMBING, HEATING, AND AIR-CONDITIONING CONTRACTORS 35,742,149.22 35.74 million 15

Insight

Over the 5-year window, obligations for PIID 28321320D00060005 are fully concentrated in NAICS 238220, Plumbing, Heating, and Air-Conditioning Contractors. This category accounts for $35.74 million across 15 awards, indicating a focused obligation pattern within a single trade classification. No other NAICS codes are reflected in the provided rows, so the distribution appears highly concentrated rather than diversified.

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 = '28321320D00060005'
    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
Z1AA MAINTENANCE OF OFFICE BUILDINGS 35,742,149.22 35.74 million 15

Insight

Obligations under PIID 28321320D00060005 are fully concentrated in PSC Z1AA, Maintenance of Office Buildings. Over the 5-year window, this PSC accounts for $35.74 million across 15 awards, indicating sustained and highly focused use of the vehicle for a single service category. There is no evidence in the provided rows of diversification across other PSCs.

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 = '28321320D00060005'
    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 8,870,606.64 8.87 million 3
2022 9,067,020.46 9.07 million 4
2023 8,512,458.64 8.51 million 4
2024 9,292,063.48 9.29 million 4

Insight

Obligations for PIID 28321320D00060005 remained relatively stable across the reported period, ranging from $8.51 million to $9.29 million annually. Award activity was similarly concentrated, with 3 awards in 2021 and 4 awards in each of 2022 through 2024, indicating a steady distribution of obligations over a small number of actions. The low year-to-year variation suggests this vehicle supported a consistent funding profile rather than episodic spikes.

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.