Vehicle Number

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

Vehicle number record for Agency ID 8000, associated with PIID 80JSC019C0012, summarizing 10 years of award activity and obligations.

This page presents procurement activity tied to the vehicle number entity for Agency ID 8000 over the last 10 years. The record shows 228 award actions with total obligated value of 3.16 billion dollars, or 3,161,470,013.79 exact.

Generated at 03/20/2026

Analysis period: Last 10 years

Values reflect the provided analysis window and may differ slightly from rounded figures because obligations are shown in exact dollars and cents.

Agency ID
8000
PIID
80JSC019C0012
Type
Vehicle
Total Obligated
3.16 billion
3,161,470,013.79
Actions
228
Average Action Value
13,866,096.55

Overview

Across the last 10 years, this vehicle number record is linked to PIID 80JSC019C0012 and shows 228 award actions. Total obligated amount is 3,161,470,013.79 dollars, with an average action value of 13,866,096.55 dollars. The figures describe the observed award activity for the entity within the stated period.

How to use this page

This page is intended for review of obligation patterns, action volume, and average award size tied to the vehicle number entity. It provides a concise procurement profile for analysis of Agency ID 8000 activity under PIID 80JSC019C0012.

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 = '80JSC019C0012'
    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 3,161,470,013.79 3.16 billion 228

Insight

Within the 10-year window for PIID 80JSC019C0012, all reported obligations in the top_agencies section are concentrated in a single agency: the National Aeronautics and Space Administration. NASA accounts for $3.16 billion across 228 awards, indicating a highly concentrated obligation pattern with no distribution across other agencies in the provided rows.

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 = '80JSC019C0012'
        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 = '80JSC019C0012'
    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) 3,161,470,013.79 3.16 billion 228

Insight

Obligations for this vehicle are fully concentrated in NAICS 541715, Research and Development in the Physical, Engineering, and Life Sciences (except Nanotechnology and Biotechnology), with $3.16 billion across 228 awards over the 10-year window. This indicates the vehicle is narrowly aligned to a single scientific R&D market rather than a diversified set of industries. The award volume suggests repeated use within the same NAICS, supporting a sustained procurement pattern in this 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 = '80JSC019C0012'
    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
1555 SPACE VEHICLES 3,161,470,013.79 3.16 billion 228

Insight

For PIID 80JSC019C0012 over the 10-year window, obligations are entirely concentrated in PSC 1555, Space Vehicles. This PSC accounts for $3.16 billion across 228 awards, indicating a highly focused procurement pattern rather than a diversified distribution across multiple product/service categories.

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 = '80JSC019C0012'
    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 69,680,000.00 69.68 million 9
2020 195,119,846.34 195.12 million 27
2021 507,008,698.31 507.01 million 35
2022 521,652,819.72 521.65 million 40
2023 643,856,761.39 643.86 million 41
2024 488,942,006.03 488.94 million 37
2025 735,209,882.00 735.21 million 39

Insight

Obligations on PIID 80JSC019C0012 increased sharply from 69.68 million across 9 awards in 2019 to 195.12 million in 2020 and exceeded 500 million in 2021, indicating a rapid ramp-up in activity. Annual obligations remained elevated and relatively concentrated between 2021 and 2025, ranging from 488.94 million to 735.21 million, with award counts staying near the upper 30s to low 40s. The highest obligation level occurred in 2025 at 735.21 million across 39 awards, while 2024 marked a temporary dip to 488.94 million before the series rebounded.

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.