Vehicle Number

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

Procurement analysis for vehicle number tied to PIID 80LARC17C0003 under Agency ID 8000 over the last 5 years.

This page summarizes federal award activity for vehicle number associated with PIID 80LARC17C0003 across the last 5 years. The record shows 44 award actions with total obligations of $153.03 million.

Generated at 03/21/2026

Analysis period: Last 5 years

Totals reflect the provided analysis window and reported obligated amounts, including an exact total of $153,034,663.46 and an average action value of $3,478,060.53.

Agency ID
8000
PIID
80LARC17C0003
Type
Vehicle
Total Obligated
153.03 million
153,034,663.46
Actions
44
Average Action Value
3,478,060.53

Overview

For the last 5 years, vehicle number under PIID 80LARC17C0003 recorded 44 award actions and $153,034,663.46 in total obligations. The average action value was $3,478,060.53, indicating a materially funded award history within the stated period. These figures are limited to the inputs provided for Agency ID 8000.

How to use this page

Use this page to review award volume, obligated dollars, and average action value for the specified vehicle record. It is suitable for procurement tracking, comparison within Agency ID 8000, and quick reference to the PIID-level activity reflected in the analysis window.

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 = '80LARC17C0003'
    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 153,034,663.46 153.03 million 44

Insight

Over the 5-year window, obligations for PIID 80LARC17C0003 are fully concentrated within a single agency: the National Aeronautics and Space Administration. NASA accounts for 44 awards totaling $153.03 million, indicating that this vehicle has been used exclusively, or nearly exclusively, within one agency rather than distributed across multiple agencies. This concentration suggests a focused procurement pattern with no visible interagency spread in the provided data.

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 = '80LARC17C0003'
        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 = '80LARC17C0003'
    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
541712 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT BIOTECHNOLOGY) 153,034,663.46 153.03 million 44

Insight

Over the 5-year window, obligations for PIID 80LARC17C0003 are fully concentrated in NAICS 541712, Research and Development in the Physical, Engineering, and Life Sciences (except Biotechnology), with $153.03 million across 44 awards. This indicates a single-industry concentration with no diversification across other NAICS codes in the provided data. The volume of awards alongside the obligated amount suggests repeated activity within the same research and development 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 = '80LARC17C0003'
    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
AJ96 R&D- GENERAL SCIENCE/TECHNOLOGY: OTHER (MANAGEMENT/SUPPORT) 153,034,663.46 153.03 million 44

Insight

Obligations for PIID 80LARC17C0003 over the 5-year window are fully concentrated in PSC AJ96, R&D – General Science/Technology: Other (Management/Support). This PSC accounts for $153.03 million across 44 awards, indicating a sustained and concentrated use of this vehicle for the same category of work. No other PSCs are reported in the provided rows, so distribution across product/service classifications appears highly focused.

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 = '80LARC17C0003'
    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 74,430,242.00 74.43 million 16
2022 69,328,430.00 69.33 million 15
2023 9,282,210.00 9.28 million 12
2025 -6,218.54 -6.22 thousand 1

Insight

Obligations under PIID 80LARC17C0003 are heavily concentrated in 2021 and 2022, which together account for more than $143.75 million across 31 awards. Funding then drops sharply in 2023 to $9.28 million across 12 awards, indicating a significant contraction in annual activity. The 2025 entry is a single, negligible negative obligation (-$6.22 thousand), consistent with a minor downward adjustment rather than new award activity.

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.