Vehicle Number

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

Analyst summary for vehicle number tied to PIID 80LARC21DA002 at agency 8000, covering the last 10 years of award activity.

This page summarizes procurement activity for vehicle number under PIID 80LARC21DA002 for agency ID 8000 over the last 10 years. The record shows 24 award actions with total obligated funding of 101.10 million and an average action value of 4,212,401.21.

Generated at 03/21/2026

Analysis period: Last 10 years

Obligated amounts are shown as reported in the source data, with a readable total of 101.10 million and an exact total of 101097629.

Agency ID
8000
PIID
80LARC21DA002
Type
Vehicle
Total Obligated
101.10 million
101,097,629.00
Actions
24
Average Action Value
4,212,401.21

Overview

The analysis window covers the last 10 years of award activity associated with vehicle number and PIID 80LARC21DA002. Across 24 award actions, the record totals 101,097,629 in obligated funds, which equals 101.10 million in readable format.

How to use this page

The average action value is 4,212,401.21, indicating a relatively concentrated set of obligations across the period. Users can use this page to review overall funding scale, action frequency, and the reported obligation total for this vehicle record.

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 = '80LARC21DA002'
    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 101,097,629.00 101.10 million 24

Insight

Over the 10-year window, the vehicle is associated with a single top agency: the National Aeronautics and Space Administration (Agency ID 8000). NASA accounts for $101.10 million in total obligated funding across 24 awards, indicating full concentration of this vehicle’s observed obligation activity in one agency. This pattern suggests the vehicle is used exclusively or predominantly within NASA for the period reviewed.

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 = '80LARC21DA002'
        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 = '80LARC21DA002'
    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
541715 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) 101,097,629.00 101.10 million 24

Insight

Over the 10-year window, obligations for vehicle 80LARC21DA002 are fully concentrated in NAICS 541715, with $101.10 million across 24 awards. This indicates a single dominant requirement category with no observed distribution across additional NAICS codes in the provided data. The award pattern suggests recurring funding within research and development in the physical, engineering, and life sciences sector.

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 = '80LARC21DA002'
    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
AR11 SPACE R&D SERVICES; SPACE FLIGHT, RESEARCH AND SUPPORTING ACTIVITIES; BASIC RESEARCH 101,097,629.00 101.10 million 24

Insight

Obligations under PIID 80LARC21DA002 are highly concentrated in PSC AR11, with $101.10 million obligated across 24 awards over the 10-year window. This indicates the vehicle has been used primarily for space R&D services and related supporting activities, with no evidence of meaningful PSC diversification in the provided data. The award pattern suggests sustained use for a single PSC category rather than a broadly distributed procurement profile.

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 = '80LARC21DA002'
    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
2021 40,084,550.00 40.08 million 3
2022 18,609,978.00 18.61 million 9
2023 38,972,400.00 38.97 million 6
2024 0.00 0.00 3
2025 3,430,701.00 3.43 million 3

Insight

Obligations under PIID 80LARC21DA002 were concentrated in 2021 and 2023, at 40.08 million and 38.97 million respectively, with 3 and 6 awards. Activity declined sharply in 2022 to 18.61 million across 9 awards, then dropped to zero obligated in 2024 despite 3 awards. Through 2025, obligations remained low at 3.43 million across 3 awards, indicating reduced funding volume and smaller annual award activity after the 2021–2023 peak period.

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.