Vehicle Number

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

Federal procurement analysis for vehicle number 4740, tied to PIID GS09P14KSC0003 over the last 10 years.

This page summarizes obligation activity for the vehicle record identified by agency ID 4740 and PIID GS09P14KSC0003. The analysis window covers the last 10 years, with 62 award actions totaling 58.99 million dollars.

Generated at 03/21/2026

Analysis period: Last 10 years

Dollar figures are shown as provided, with a total obligated exact value of 58,992,710.96 and an average action value of 951,495.34.

Agency ID
4740
PIID
GS09P14KSC0003
Type
Vehicle
Total Obligated
58.99 million
58,992,710.96
Actions
62
Average Action Value
951,495.34

Overview

The record shows 62 award actions in the last 10 years, with total obligated funds of 58,992,710.96. The average action value is 951,495.34, which indicates recurring obligation activity rather than a single isolated award.

How to use this page

Use this page to review the procurement history associated with vehicle number 4740 and PIID GS09P14KSC0003. The figures support basic trend review, obligation sizing, and action-count analysis for the selected period.

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 = 'GS09P14KSC0003'
    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 58,992,710.96 58.99 million 62

Insight

Over the 10-year window for PIID GS09P14KSC0003, obligations are fully concentrated in a single top agency: Public Buildings Service (agency ID 4740). This agency accounts for $58.99 million across 62 awards, indicating repeated use of the vehicle within one agency rather than a broad distribution across multiple agencies. The concentration suggests the vehicle has been used primarily as an agency-specific procurement mechanism in 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 = 'GS09P14KSC0003'
        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 = 'GS09P14KSC0003'
    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 58,992,710.96 58.99 million 62

Insight

Obligations for PIID GS09P14KSC0003 are fully concentrated in NAICS 561210, Facilities Support Services, with $58.99 million across 62 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 volume of awards relative to total obligations suggests repeated activity within the same service category rather than a broad mix of procurement types.

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 = 'GS09P14KSC0003'
    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 58,992,710.96 58.99 million 62

Insight

Over the 10-year window, vehicle PIID GS09P14KSC0003 obligated $58.99 million across 62 awards, all under PSC Z1AA, Maintenance of Office Buildings. Obligations are fully concentrated in a single PSC, indicating no distribution across multiple product or service categories within this vehicle. This pattern suggests the vehicle was used exclusively for building maintenance activity during the period reviewed.

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 = 'GS09P14KSC0003'
    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 6,036,556.85 6.04 million 7
2017 9,806,035.76 9.81 million 8
2018 7,490,562.66 7.49 million 10
2019 5,961,900.35 5.96 million 5
2020 7,831,963.42 7.83 million 8
2021 9,728,065.68 9.73 million 13
2022 8,469,834.24 8.47 million 4
2023 3,667,792.00 3.67 million 4
2024 0.00 0.00 3

Insight

Obligations for PIID GS09P14KSC0003 were concentrated in 2017 and 2021, which posted the highest annual totals at $9.81 million and $9.73 million, respectively. Annual obligated amounts were otherwise moderate and variable, ranging from $3.67 million in 2023 to $8.47 million in 2022, with award counts generally between 4 and 13. Activity declined sharply in 2023 and fell to zero obligated dollars in 2024 despite three awards, indicating a recent reduction in funding level rather than in award frequency.

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.