Vehicle Number

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

Federal procurement summary for vehicle number under PIID GS02P14PCD0032, covering the last 5 years of recorded award actions.

This page summarizes vehicle number activity tied to Agency ID 4740 for PIID GS02P14PCD0032 over the last 5 years. The record shows 14 award actions with total obligated dollars of 22.14 million.

Generated at 03/21/2026

Analysis period: Last 5 years

Amounts reflect the provided total obligated exact value of 22136288.89 and an average action value of 1581163.49.

Agency ID
4740
PIID
GS02P14PCD0032
Type
Vehicle
Total Obligated
22.14 million
22,136,288.89
Actions
14
Average Action Value
1,581,163.49

Overview

The procurement record for vehicle number under PIID GS02P14PCD0032 shows 14 award actions during the last 5 years. Total obligated funding is 22.14 million, with an average action value of 1,581,163.49. This page is limited to the provided award-level totals and does not add contract details beyond the supplied inputs.

How to use this page

Use this page to review the scale and frequency of obligated activity associated with vehicle number for Agency ID 4740. The figures support quick comparison across award actions, obligation totals, and average action value within the analysis 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 = '4740' AND content__IDV__contractID__IDVID__PIID = 'GS02P14PCD0032'
    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 22,136,288.89 22.14 million 14

Insight

PUBLIC BUILDINGS SERVICE accounts for all observed obligations in this 5-year vehicle summary, with $22.14 million across 14 awards. This indicates full concentration within a single top agency and no observable distribution across other agencies in the provided rows. The award pattern suggests repeated use of the vehicle by a single agency rather than broad interagency utilization.

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 = 'GS02P14PCD0032'
        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 = 'GS02P14PCD0032'
    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
811310 COMMERCIAL AND INDUSTRIAL MACHINERY AND EQUIPMENT (EXCEPT AUTOMOTIVE AND ELECTRONIC) REPAIR AND MAINTENANCE 22,136,288.89 22.14 million 14

Insight

Over the 5-year window, obligations for vehicle PIID GS02P14PCD0032 are fully concentrated in NAICS 811310, with $22.14 million across 14 awards. This indicates a narrow procurement profile tied to commercial and industrial machinery and equipment repair and maintenance, with no evidence in the provided data of diversification across other NAICS codes. The concentration suggests this activity is the sole recorded NAICS driver for this vehicle in the period reviewed.

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 = 'GS02P14PCD0032'
    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 22,136,288.89 22.14 million 14

Insight

Obligations are fully concentrated in PSC Z1AA, Maintenance of Office Buildings, which accounts for the entire 5-year obligation profile for PIID GS02P14PCD0032. Across 14 awards, the vehicle obligated $22.14 million in this PSC, indicating a narrow service focus with no diversification across other PSCs in the provided data. This concentration suggests the vehicle has been used consistently for the same maintenance category over the period.

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 = 'GS02P14PCD0032'
    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 6,290,811.47 6.29 million 3
2022 6,688,153.97 6.69 million 3
2023 6,838,990.73 6.84 million 6
2024 2,318,332.72 2.32 million 1
2025 0.00 0.00 1

Insight

Obligations for PIID GS02P14PCD0032 were concentrated in 2021-2023, with annual funding remaining relatively stable at about $6.29 million to $6.84 million across those three years. Award activity peaked in 2023 with 6 awards, compared with 3 awards in both 2021 and 2022, indicating higher transaction volume without a corresponding increase in obligated dollars. Funding then declined sharply in 2024 to $2.32 million with 1 award, and 2025 shows 1 award with no obligated amount reported.

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.