Vehicle Number

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

Vehicle number procurement activity for agency 2800 under PIID 28321320D00060005 over the last 10 years, with $44.42 million obligated across 18 actions.

This page summarizes vehicle number award activity tied to agency 2800 and PIID 28321320D00060005 during the last 10 years. The record shows 18 award actions with total obligations of $44,424,103.22 and an average action value of $2,468,005.73.

Generated at 03/21/2026

Analysis period: Last 10 years

Totals reflect the provided analysis window and may differ slightly from rounded display values.

Agency ID
2800
PIID
28321320D00060005
Type
Vehicle
Total Obligated
44.42 million
44,424,103.22
Actions
18
Average Action Value
2,468,005.73

Overview

Over the last 10 years, this vehicle number record is associated with 18 award actions under PIID 28321320D00060005 for agency 2800. Total obligated value is $44,424,103.22, with an average action value of $2,468,005.73. This page is intended to support review of obligation volume and action frequency for the award record.

How to use this page

Use this page to review the scale of obligated funding tied to the vehicle number record and to compare action count against average action value. It is suitable for procurement analysis, obligation tracking, and cross-checking the award history within the stated 10-year 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 = '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 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
2800 SOCIAL SECURITY ADMINISTRATION 44,424,103.22 44.42 million 18

Insight

For PIID 28321320D00060005 over the 10-year window, all reported obligation activity in this section is concentrated within the Social Security Administration (Agency ID 2800). The vehicle reflects 18 awards totaling $44.42 million, indicating a sustained and material obligation profile under a single agency. No cross-agency distribution is present in the provided data, so the activity is fully concentrated at SSA.

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 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 = '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 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
238220 PLUMBING, HEATING, AND AIR-CONDITIONING CONTRACTORS 44,424,103.22 44.42 million 18

Insight

Obligations for PIID 28321320D00060005 are fully concentrated in NAICS 238220, Plumbing, Heating, and Air-Conditioning Contractors, over the 10-year window. This NAICS accounts for the entire $44.42 million obligated across 18 awards, indicating a single-industry award profile with no observable diversification in the provided data. The concentration suggests the vehicle was used consistently for this trade category rather than across multiple NAICS sectors.

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 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
Z1AA MAINTENANCE OF OFFICE BUILDINGS 44,424,103.22 44.42 million 18

Insight

Obligations under PIID 28321320D00060005 are fully concentrated in PSC Z1AA, Maintenance of Office Buildings, with $44.42 million across 18 awards over the 10-year window. This indicates a single-service procurement profile with no observed PSC diversification in the provided data. The award count suggests repeated tasking or ordering within the same service category rather than broad category mixing.

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 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2020 8,681,954.00 8.68 million 3
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 are stable across 2020–2024, ranging from $8.51 million to $9.29 million annually. Award activity is also steady, with 3 awards in 2020 and 2021 and 4 awards in each year from 2022 through 2024, indicating a concentrated but consistent vehicle usage pattern. The modest year-to-year variation suggests no major shift in obligation volume over the period reviewed.

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.