Vehicle Number

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

Procurement analysis page for vehicle number 4740 tied to PIID GS11P16DCD7008, covering obligations over the last 10 years.

This page summarizes federal procurement activity for vehicle number 4740 under PIID GS11P16DCD7008 during the last 10 years. The record shows 14 award actions with total obligated spending of $33.24 million and an average action value of $2,374,099.61.

Generated at 03/21/2026

Analysis period: Last 10 years

Total obligated reflects $33,237,394.52 across 14 award actions within the analysis window.

Agency ID
4740
PIID
GS11P16DCD7008
Type
Vehicle
Total Obligated
33.24 million
33,237,394.52
Actions
14
Average Action Value
2,374,099.61

Overview

The procurement record for vehicle number 4740 under PIID GS11P16DCD7008 spans the last 10 years and totals $33,237,394.52 in obligated dollars. Across 14 award actions, the average action value is $2,374,099.61. This page is intended to support review of obligation volume and action count for the vehicle-level record.

How to use this page

Use this page to review the scale of obligations associated with vehicle number 4740 and to compare the 14 recorded award actions over time. The figures are useful for contract-level analysis, trend review, and cross-checking the total obligated amount against the average action value.

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 = 'GS11P16DCD7008'
    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 33,237,394.52 33.24 million 14

Insight

For this vehicle over the 10-year window, obligations are fully concentrated in Public Buildings Service (agency ID 4740), which accounts for the full $33.24 million across 14 awards. This indicates a single-agency funding pattern with no visible distribution across other agencies in the provided data. The award count suggests repeated use of the vehicle rather than a one-time obligation event.

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 = 'GS11P16DCD7008'
        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 = 'GS11P16DCD7008'
    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
561720 JANITORIAL SERVICES 33,237,394.52 33.24 million 14

Insight

Obligations under PIID GS11P16DCD7008 are fully concentrated in NAICS 561720, Janitorial Services, with $33.24 million across 14 awards over the 10-year window. This indicates a single-industry spend profile with no diversification across other NAICS codes in the provided data. The award count suggests repeated procurement activity in the same service category rather than isolated spending events.

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 = 'GS11P16DCD7008'
    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
S201 HOUSEKEEPING- CUSTODIAL JANITORIAL 33,237,394.52 33.24 million 14

Insight

Over the 10-year window, vehicle GS11P16DCD7008 shows complete PSC concentration in S201, Housekeeping-Custodial Janitorial. This PSC accounts for the full reported obligation total of $33.24 million across 14 awards, indicating a highly focused service profile with no diversification across other PSCs 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 = 'GS11P16DCD7008'
    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 11,239,762.44 11.24 million 1
2017 21,914,652.41 21.91 million 8
2018 0.00 0.00 4
2020 82,979.67 82.98 thousand 1

Insight

Obligations under PIID GS11P16DCD7008 are concentrated in 2016 and 2017, which together account for nearly all recorded funding in the 10-year window. Activity then drops sharply in 2018, when four awards carry no obligated dollars, followed by a minimal obligation in 2020 of 82.98 thousand across one award. This pattern suggests a front-loaded funding profile with limited subsequent obligation activity.

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.