Vehicle Number

Vehicle Number 4740 / GS02P14PCD0029 Federal Contract Action Summary (Last 10 Years)

Procurement summary for vehicle number tied to agency 4740 and PIID GS02P14PCD0029 over the last 10 years.

This page summarizes federal award activity for vehicle number under agency ID 4740 and PIID GS02P14PCD0029 during the last 10 years. The record shows 33 award actions with total obligated funding of $57.68 million and an average action value of $1,747,970.54.

Generated at 03/21/2026

Analysis period: Last 10 years

Total obligated amount is shown as $57,683,027.86 and may be rounded in displayed summaries.

Agency ID
4740
PIID
GS02P14PCD0029
Type
Vehicle
Total Obligated
57.68 million
57,683,027.86
Actions
33
Average Action Value
1,747,970.54

Overview

The available record for vehicle number under agency ID 4740 and PIID GS02P14PCD0029 covers 33 award actions in the last 10 years. Total obligations equal $57,683,027.86, with an average action value of $1,747,970.54. These figures provide a compact view of the contract activity associated with this vehicle record.

How to use this page

Use this page to review the scale and cadence of award actions linked to the vehicle number entry. The summary is based only on the provided obligation total, action count, and average action value for the stated analysis window. No additional contract details are inferred beyond the supplied procurement data.

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 = 'GS02P14PCD0029'
    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
4740 PUBLIC BUILDINGS SERVICE 57,683,027.86 57.68 million 33

Insight

All obligated dollars in this 10-year window are concentrated in PUBLIC BUILDINGS SERVICE (Agency ID 4740), which accounts for the full $57.68 million associated with PIID GS02P14PCD0029. The award volume is limited to 33 actions, indicating a narrow distribution of obligations rather than spread across multiple agencies. This pattern suggests the vehicle has been used exclusively within a single agency account for this 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 = '4740' AND content__IDV__contractID__IDVID__PIID = 'GS02P14PCD0029'
        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 = '4740' AND content__IDV__contractID__IDVID__PIID = 'GS02P14PCD0029'
    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
561210 FACILITIES SUPPORT SERVICES 57,683,027.86 57.68 million 33

Insight

Obligations for PIID GS02P14PCD0029 are fully concentrated in NAICS 561210, Facilities Support Services, with $57.68 million across 33 awards over the 10-year window. This indicates a highly focused procurement profile with no diversification across other NAICS codes in the provided data. The repeated award pattern suggests sustained use of the same service category rather than a broad mix of acquisitions.

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 = 'GS02P14PCD0029'
    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 57,683,027.86 57.68 million 33

Insight

Over the 10-year window, obligations for PIID GS02P14PCD0029 are fully concentrated in PSC Z1AA, Maintenance of Office Buildings, with $57.68 million across 33 awards. This indicates a narrow service profile rather than a diversified mix of product or service categories. The volume of awards suggests recurring procurement activity within the same maintenance 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 = 'GS02P14PCD0029'
    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
2016 8,712,087.21 8.71 million 6
2017 7,657,514.49 7.66 million 3
2018 9,901,372.66 9.90 million 4
2019 6,089,425.38 6.09 million 6
2020 8,380,851.81 8.38 million 5
2021 10,195,476.03 10.20 million 6
2022 6,746,300.28 6.75 million 2
2024 0.00 0.00 1

Insight

Obligations for PIID GS02P14PCD0029 were concentrated in the 2016–2022 period, ranging from $6.09 million to $10.20 million annually, with the highest obligated amount in 2021 ($10.20 million) and the lowest in 2019 ($6.09 million). Award activity was modest and uneven, with annual counts generally between 2 and 6 awards, including a low of 2 awards in 2022. In 2024, one award was recorded with no obligated amount, indicating a departure from the prior funding pattern.

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.