Vehicle Number

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

Federal procurement summary for vehicle number 4740 under PIID GS11P16DCD7009, covering obligations in the last 5 years.

This page summarizes award activity for vehicle number 4740 tied to PIID GS11P16DCD7009 over the last 5 years. The record shows 8 award actions with total obligations of $10.48 million and an average action value of $1,309,723.47.

Generated at 03/21/2026

Analysis period: Last 5 years

Totals are based on the provided exact obligated amount of $10,477,787.79 and may differ from the rounded readable figure.

Agency ID
4740
PIID
GS11P16DCD7009
Type
Vehicle
Total Obligated
10.48 million
10,477,787.79
Actions
8
Average Action Value
1,309,723.47

Overview

Across the last 5 years, this vehicle record is associated with 8 award actions and $10,477,787.79 in total obligations. The average action value is $1,309,723.47, indicating a relatively small number of higher-value actions within the analysis window. These figures describe obligated activity for the identified vehicle number and PIID only.

How to use this page

Use this page to review the obligation history associated with vehicle number 4740 and PIID GS11P16DCD7009. The summary is useful for comparing action count, total obligated dollars, and average action value within the selected 5-year 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 = 'GS11P16DCD7009'
    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 10,477,787.79 10.48 million 8

Insight

For PIID GS11P16DCD7009 over the 5-year window, all reported obligations are concentrated in a single top agency: Public Buildings Service (Agency ID 4740). This agency accounts for $10.48 million across 8 awards, indicating that obligations are fully concentrated rather than distributed across multiple agencies. The award pattern suggests recurring or segmented activity within the same agency relationship.

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 = 'GS11P16DCD7009'
        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 = 'GS11P16DCD7009'
    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
561720 JANITORIAL SERVICES 10,477,787.79 10.48 million 8

Insight

Over the 5-year window, obligations for PIID GS11P16DCD7009 are fully concentrated in NAICS 561720, Janitorial Services, with $10.48 million obligated across 8 awards. This indicates a narrow service profile with no diversification across other NAICS codes in the provided data. The repeated award activity suggests sustained procurement in this category rather than a one-time obligation.

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 = 'GS11P16DCD7009'
    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
S201 HOUSEKEEPING- CUSTODIAL JANITORIAL 10,477,787.79 10.48 million 8

Insight

Over the past 5 years, obligations under PIID GS11P16DCD7009 are fully concentrated in PSC S201, Housekeeping-Custodial Janitorial. This PSC accounts for $10.48 million across 8 awards, indicating a narrow service profile with no diversification across other product or service categories in the provided data.

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 = 'GS11P16DCD7009'
    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 9,295,346.89 9.30 million 7
2022 1,182,440.90 1.18 million 1

Insight

Obligations under PIID GS11P16DCD7009 were heavily concentrated in 2021, with 7 awards totaling $9.30 million. Activity then declined sharply in 2022 to 1 award and $1.18 million obligated, indicating a marked reduction in both volume and dollar value over the period provided. This pattern suggests the vehicle experienced a front-loaded funding profile rather than sustained annual distribution.

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.