Vehicle Number

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

FPDS Query page for vehicle number 80LARC20D0006 at agency ID 8000, showing last 5 years of award activity and obligations.

This page summarizes procurement activity for vehicle number 80LARC20D0006 over the last 5 years. The record shows 29 award actions with total obligated amounts of 120.62 million and an average action value of 4,159,324.38.

Generated at 03/21/2026

Analysis period: Last 5 years

Total obligated amounts are shown as 120,620,407 and rounded to 120.62 million for readability.

Agency ID
8000
PIID
80LARC20D0006
Type
Vehicle
Total Obligated
120.62 million
120,620,407.00
Actions
29
Average Action Value
4,159,324.38

Overview

The overview identifies vehicle number 80LARC20D0006 under agency ID 8000 and presents activity for the last 5 years. Across that period, the record includes 29 award actions and total obligations of 120,620,407. The average action value is 4,159,324.38.

How to use this page

Use this page to review the observed award count and obligation levels tied to vehicle number 80LARC20D0006. The figures support basic comparison across FPDS Query records and provide a concise 5-year procurement summary.

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 = '80LARC20D0006'
    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 120,620,407.00 120.62 million 29

Insight

For PIID 80LARC20D0006 over the 5-year window, all recorded obligation is concentrated with the National Aeronautics and Space Administration (agency ID 8000). NASA accounts for $120.62 million across 29 awards, indicating a complete single-agency concentration for this vehicle within the observed 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 = '80LARC20D0006'
        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 = '80LARC20D0006'
    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
541715 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) 120,620,407.00 120.62 million 29

Insight

Obligations under PIID 80LARC20D0006 are fully concentrated in NAICS 541715, Research and Development in the Physical, Engineering, and Life Sciences (except Nanotechnology and Biotechnology), with $120.62 million across 29 awards over the 5-year window. This indicates a highly focused award profile with no observed NAICS diversification in the provided data. The concentration suggests the vehicle is being used primarily to support R&D requirements within this single industry 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 = '8000' AND content__IDV__contractID__IDVID__PIID = '80LARC20D0006'
    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
AR21 R&D- SPACE: SCIENCE/APPLICATIONS (BASIC RESEARCH) 120,620,407.00 120.62 million 29

Insight

Over the 5-year window, obligations on this vehicle are fully concentrated in PSC AR21, R&D- Space: Science/Applications (Basic Research), with $120.62 million across 29 awards. This indicates the vehicle has been used consistently for a single research-oriented PSC rather than a diversified mix of supply or service categories. The award count suggests activity is spread across multiple actions, but spending remains centered in one PSC category.

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 = '80LARC20D0006'
    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 26,797,000.00 26.80 million 5
2022 40,426,462.00 40.43 million 5
2023 18,522,356.00 18.52 million 5
2024 18,499,000.00 18.50 million 8
2025 16,375,589.00 16.38 million 6

Insight

Obligations under PIID 80LARC20D0006 were highest in 2022 at $40.43 million, then declined to $18.52 million in 2023 and remained near that level in 2024 ($18.50 million) and 2025 ($16.38 million). Award activity was relatively stable at five awards in 2021 through 2023, increased to eight awards in 2024, and then fell to six awards in 2025. Overall, the five-year pattern indicates a one-year funding spike followed by lower, more compressed annual obligation levels.

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.