Vehicle Number

Vehicle Number 8000 / 80GSFC25D0003 Federal Contract Action Summary (Last 5 Years)

Procurement analysis for vehicle number 80GSFC25D0003 under Agency ID 8000, covering the last 5 years of award activity.

This page summarizes federal award activity for vehicle number 80GSFC25D0003 over the last 5 years. The record shows 11 award actions with total obligations of $75.23 million and an average action value of $6,839,074.67.

Generated at 03/21/2026

Analysis period: Last 5 years

Total obligated is shown as both a readable value and the exact recorded amount: $75,229,821.32.

Agency ID
8000
PIID
80GSFC25D0003
Type
Vehicle
Total Obligated
75.23 million
75,229,821.32
Actions
11
Average Action Value
6,839,074.67

Overview

The available record for vehicle number 80GSFC25D0003 under Agency ID 8000 covers 11 award actions within the last 5 years. Total obligated dollars equal $75,229,821.32, which is presented as $75.23 million for readability. The average action value across the period is $6,839,074.67. This page is intended to support procurement review by consolidating the action count and obligation totals for the identified vehicle.

How to use this page

Use this page to review the overall procurement footprint associated with PIID 80GSFC25D0003 during the analysis window. The summary supports quick comparison of total obligations, action frequency, and average action value. The figures are limited to the inputs provided here and should be treated as a concise procurement snapshot rather than a full contract history.

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 = '8000' AND content__IDV__contractID__IDVID__PIID = '80GSFC25D0003'
    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
8000 NATIONAL AERONAUTICS AND SPACE ADMINISTRATION 75,229,821.32 75.23 million 11

Insight

For PIID 80GSFC25D0003 over the last 5 years, obligations are fully concentrated within a single agency: National Aeronautics and Space Administration (agency 8000). NASA accounts for $75.23 million across 11 awards, indicating a complete agency-level concentration in the vehicle’s obligated activity.

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 = '8000' AND content__IDV__contractID__IDVID__PIID = '80GSFC25D0003'
        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 = '8000' AND content__IDV__contractID__IDVID__PIID = '80GSFC25D0003'
    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
541330 ENGINEERING SERVICES 75,229,821.32 75.23 million 11

Insight

Obligations under PIID 80GSFC25D0003 are fully concentrated in NAICS 541330, Engineering Services, with $75.23 million obligated across 11 awards over the 5-year window. This indicates a narrow service profile with no visible NAICS diversification in the provided data. The pattern suggests the vehicle has been used consistently for engineering services requirements rather than a mixed set of industry categories.

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 = '8000' AND content__IDV__contractID__IDVID__PIID = '80GSFC25D0003'
    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
R408 SUPPORT- PROFESSIONAL: PROGRAM MANAGEMENT/SUPPORT 75,229,821.32 75.23 million 11

Insight

Over the 5-year window, obligations under vehicle 80GSFC25D0003 are fully concentrated in PSC R408, Support- Professional: Program Management/Support, totaling $75.23 million across 11 awards. This indicates a single-service concentration within the vehicle rather than a diversified PSC mix. The concentration suggests the vehicle has been used primarily for program management/support requirements.

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 = '8000' AND content__IDV__contractID__IDVID__PIID = '80GSFC25D0003'
    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
2025 75,229,821.32 75.23 million 11

Insight

The 5-year annual trend for PIID 80GSFC25D0003 shows obligations recorded only in FY 2025, totaling $75.23 million across 11 awards. This indicates a highly concentrated funding pattern in the available window, with activity currently centered in a single fiscal year rather than distributed across multiple years. The limited year coverage prevents assessment of multi-year stability or growth from the provided data.

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.