Vehicle Number

Vehicle Number 8900 / DEAU0000014 Federal Contract Action Summary (Last 5 Years)

Vehicle number page for PIID DEAU0000014 in Agency ID 8900, covering award activity over the last 5 years.

This page summarizes vehicle number activity associated with PIID DEAU0000014 for Agency ID 8900 during the last 5 years. The record set includes 14 award actions with total obligated amount of 35.22 million.

Generated at 03/21/2026

Analysis period: Last 5 years

Total obligated exact value is 35215868.45 and the average action value is 2515419.18.

Agency ID
8900
PIID
DEAU0000014
Type
Vehicle
Total Obligated
35.22 million
35,215,868.45
Actions
14
Average Action Value
2,515,419.18

Overview

The analysis window covers the last 5 years of award activity for vehicle number under PIID DEAU0000014 at Agency ID 8900. Across 14 award actions, the total obligated amount is 35.22 million, with an average action value of 2,515,419.18. These figures provide a concise view of award volume and obligation level for this vehicle.

How to use this page

Use this page to review how obligations and award actions are distributed for the vehicle number tied to PIID DEAU0000014. The totals and average action value can support basic procurement analysis, trend review, and cross-checking against FPDS records. The page is limited to the provided analysis window and does not add information beyond the reported award 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 = '8900' AND content__IDV__contractID__IDVID__PIID = 'DEAU0000014'
    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
8900 ENERGY, DEPARTMENT OF 35,215,868.45 35.22 million 14

Insight

For PIID DEAU0000014 over the 5-year window, obligations are fully concentrated within a single agency: the Department of Energy. The vehicle records 14 awards totaling $35.22 million, indicating all observed activity in this period is attributed to one agency rather than being distributed across multiple agencies. This concentration suggests the vehicle has been used exclusively, or nearly exclusively, for Department of Energy requirements in the queried timeframe.

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 = '8900' AND content__IDV__contractID__IDVID__PIID = 'DEAU0000014'
        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 = '8900' AND content__IDV__contractID__IDVID__PIID = 'DEAU0000014'
    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
561612 SECURITY GUARDS AND PATROL SERVICES 35,215,868.45 35.22 million 14

Insight

Obligations for this vehicle are fully concentrated in NAICS 561612, Security Guards and Patrol Services, totaling $35.22 million across 14 awards over the 5-year window. This indicates a narrow service focus with no diversification across NAICS codes in the provided data. The average obligation per award is approximately $2.51 million, suggesting repeated use of this vehicle for the same requirement category.

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 = '8900' AND content__IDV__contractID__IDVID__PIID = 'DEAU0000014'
    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
R499 SUPPORT- PROFESSIONAL: OTHER 35,215,868.45 35.22 million 14

Insight

Over the 5-year window, vehicle PIID DEAU0000014 is fully concentrated in PSC R499, Support- Professional: Other. This code accounts for $35.22 million across 14 awards, indicating repeated obligation activity within a single PSC category rather than a distributed mix of services. The concentration suggests this vehicle has been used consistently for the same broad professional support scope.

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 = '8900' AND content__IDV__contractID__IDVID__PIID = 'DEAU0000014'
    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 30,012,801.59 30.01 million 8
2022 5,203,066.86 5.20 million 6

Insight

The vehicle’s obligations were concentrated in 2021, when $30.01 million was obligated across 8 awards. In 2022, obligations declined sharply to $5.20 million across 6 awards, indicating a substantial year-over-year reduction in funding volume. The award count fell only modestly, suggesting the change was driven more by lower dollar value per award than by a major shift 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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.