Vehicle Number

Vehicle Number 4740 / 47PM0024D0001 Federal Contract Action Summary (Last 5 Years)

Federal procurement analysis for vehicle number under agency ID 4740 and PIID 47PM0024D0001, covering the last 5 years.

This page summarizes award activity for the vehicle number record associated with agency ID 4740 and PIID 47PM0024D0001 over the last 5 years. The record shows 30 award actions with total obligations of 59.88 million.

Generated at 03/21/2026

Analysis period: Last 5 years

Totals reflect the readable obligated amount of 59,878,365.64 and an average action value of 1,995,945.52 across 30 actions.

Agency ID
4740
PIID
47PM0024D0001
Type
Vehicle
Total Obligated
59.88 million
59,878,365.64
Actions
30
Average Action Value
1,995,945.52

Overview

The procurement record for vehicle number under agency ID 4740 and PIID 47PM0024D0001 covers 30 award actions in the last 5 years. Total obligated funding is 59,878,365.64, with an average action value of 1,995,945.52. These figures provide a concise view of the scale and frequency of activity tied to this vehicle record.

How to use this page

Use this page to review the obligation trend and action count for the identified vehicle record over the analysis window. The summary supports basic procurement review, identification of award volume, and comparison against other records using the same agency or PIID.

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 = '4740' AND content__IDV__contractID__IDVID__PIID = '47PM0024D0001'
    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
4740 PUBLIC BUILDINGS SERVICE 59,878,365.64 59.88 million 30

Insight

All reported obligations in the 5-year window are concentrated in Public Buildings Service (agency ID 4740), with $59.88 million obligated across 30 awards under PIID 47PM0024D0001. This indicates a fully concentrated agency profile for the vehicle, with no diversification across additional top agencies in the provided data. The award count suggests repeated use of the vehicle within a single agency rather than broad cross-agency distribution.

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 = '4740' AND content__IDV__contractID__IDVID__PIID = '47PM0024D0001'
        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 = '4740' AND content__IDV__contractID__IDVID__PIID = '47PM0024D0001'
    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
531312 NONRESIDENTIAL PROPERTY MANAGERS 59,878,365.64 59.88 million 30

Insight

Over the 5-year window, obligations for PIID 47PM0024D0001 are concentrated entirely in NAICS 531312, Nonresidential Property Managers, with $59.88 million across 30 awards. This indicates a narrow industrial profile for the vehicle, with all reported obligation activity in a single NAICS category. The pattern suggests sustained use of the vehicle for property management services rather than a diversified mix of requirements.

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 = '4740' AND content__IDV__contractID__IDVID__PIID = '47PM0024D0001'
    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
R699 SUPPORT- ADMINISTRATIVE: OTHER 59,878,365.64 59.88 million 30

Insight

Obligations under PIID 47PM0024D0001 are fully concentrated in PSC R699, Support- Administrative: Other, with $59.88 million obligated across 30 awards over the 5-year window. This indicates a highly focused service profile with no apparent PSC diversification in the provided data. The average obligated value is approximately $2.0 million per award, suggesting repeated procurement activity within the same administrative support category.

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 = '4740' AND content__IDV__contractID__IDVID__PIID = '47PM0024D0001'
    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
2023 6,474,379.23 6.47 million 1
2024 26,331,291.74 26.33 million 16
2025 27,072,694.67 27.07 million 13

Insight

Obligations on PIID 47PM0024D0001 are highly concentrated in the most recent two years, rising from 6.47 million across 1 award in 2023 to 26.33 million across 16 awards in 2024 and 27.07 million across 13 awards in 2025. The 2024–2025 period accounts for the clear majority of activity in the 5-year window, indicating a sharp increase in both funding volume and award frequency after 2023. The slight increase in obligated dollars from 2024 to 2025, alongside fewer awards, suggests larger average award values 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.