Vehicle Number

Vehicle Number 8000 / 80GRC019D0012 Federal Contract Action Summary (Last 10 Years)

FPDS query page for vehicle number under agency ID 8000 and PIID 80GRC019D0012, covering the last 10 years of award activity.

This page summarizes award activity associated with vehicle number for agency ID 8000 under PIID 80GRC019D0012 over the last 10 years. The record shows 82 award actions with total obligated value of 954.94 million.

Generated at 03/20/2026

Analysis period: Last 10 years

Dollar values are shown as provided, with total obligated exact recorded at 954,938,741 and average action value at 11,645,594.4.

Agency ID
8000
PIID
80GRC019D0012
Type
Vehicle
Total Obligated
954.94 million
954,938,741.00
Actions
82
Average Action Value
11,645,594.40

Overview

The analysis window covers the last 10 years and reflects award activity for vehicle number associated with agency ID 8000 and PIID 80GRC019D0012. Across that period, the page shows 82 award actions and total obligated value of 954,938,741, with an average action value of 11,645,594.4.

How to use this page

Use this page to review the obligation pattern tied to this vehicle record and compare action volume with total dollar value over time. The figures support basic FPDS analysis of award activity without adding assumptions about scope, performance, or vehicle structure.

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 = '80GRC019D0012'
    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
8000 NATIONAL AERONAUTICS AND SPACE ADMINISTRATION 954,938,741.00 954.94 million 82

Insight

For PIID 80GRC019D0012 over the 10-year window, all reported top-agency obligations are concentrated in the National Aeronautics and Space Administration, with $954.94 million across 82 awards. This indicates the vehicle is heavily associated with a single agency rather than broadly distributed across multiple departments. The award count suggests repeated use within NASA, supporting a sustained procurement relationship over the 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 = '8000' AND content__IDV__contractID__IDVID__PIID = '80GRC019D0012'
        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 = '8000' AND content__IDV__contractID__IDVID__PIID = '80GRC019D0012'
    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
336414 GUIDED MISSILE AND SPACE VEHICLE MANUFACTURING 954,938,741.00 954.94 million 82

Insight

Obligations for PIID 80GRC019D0012 are fully concentrated in NAICS 336414, Guided Missile and Space Vehicle Manufacturing, with $954.94 million obligated across 82 awards over the 10-year window. This indicates a narrow industrial focus and no observable diversification across NAICS codes in the provided data. The volume of awards suggests recurring use of this category rather than a single isolated action.

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 = '80GRC019D0012'
    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
AR15 SPACE R&D SVCS; SPACE FLIGHT, RESEARCH & SUPPORTING ACTIVITIES; R&D FACILITIES & MAJ EQUIP 724,488,711.20 724.49 million 56
AR15 R&D- SPACE: AERONAUTICS/SPACE TECHNOLOGY (OPERATIONAL SYSTEMS DEVELOPMENT) 230,450,029.80 230.45 million 26

Insight

Obligations on this vehicle are concentrated in PSC AR15, with 724.49 million across 56 awards in one AR15 category and 230.45 million across 26 awards in another AR15 category over the 10-year window. The distribution indicates sustained use of the vehicle for space-related R&D and supporting activities, with spending split across two AR15 descriptions rather than a broad mix of PSCs. Both categories point to recurring, high-dollar obligations within the same PSC family.

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 = '80GRC019D0012'
    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
2019 170,440,186.00 170.44 million 9
2020 60,009,843.80 60.01 million 19
2021 80,640,094.20 80.64 million 10
2022 195,142,074.00 195.14 million 14
2023 218,898,966.00 218.90 million 8
2024 139,485,865.00 139.49 million 7
2025 90,321,712.00 90.32 million 15

Insight

Obligations under PIID 80GRC019D0012 were uneven across the period, ranging from $60.01 million in 2020 to a peak of $218.90 million in 2023. After a decline in 2020 and 2021, obligations rebounded sharply in 2022 and 2023, then eased to $139.49 million in 2024 and $90.32 million in 2025. Award activity was also variable, with the highest count in 2020 (19 awards) and lower counts in 2023 and 2024, indicating that funding was concentrated in fewer awards during the higher-obligation years.

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.