This page summarizes obligation activity for vehicle number tied to agency 8000 and contract PIID 80JSC019C0012 during the last 5 years. The record shows 192 award actions with total obligations of 2.90 billion and an average action value of 15,086,823.79.
Vehicle Number
Vehicle Number 8000 / 80JSC019C0012 Federal Contract Action Summary (Last 5 Years)
Federal procurement summary for vehicle number under agency 8000 and PIID 80JSC019C0012 over the last 5 years.
Amounts are based on the provided readable total of 2.90 billion and exact total of 2,896,670,167.45 for the analysis window shown.
Overview
The procurement history for vehicle number under agency 8000 and PIID 80JSC019C0012 shows sustained obligation activity across the last 5 years. Total obligations equal 2,896,670,167.45 across 192 award actions, which yields an average action value of 15,086,823.79. These figures indicate repeated action-level spending within the same procurement record.
How to use this page
Use this page to review the obligation scale and action count associated with vehicle number for agency 8000. The totals provide a direct basis for comparing this PIID against other awards, tracking award cadence, and identifying whether activity is concentrated in fewer large actions or spread across many smaller ones.
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 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 | 2,896,670,167.45 | 2.90 billion | 192 |
Insight
Over the 5-year window, obligations for PIID 80JSC019C0012 are fully concentrated in the National Aeronautics and Space Administration, which accounts for $2.90 billion across 192 awards. This indicates a single-agency funding profile with no diversification across other agencies in the provided data. The volume of awards alongside the total obligated suggests sustained recurring use of this vehicle rather than reliance on a small number of large actions.
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 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 = '80JSC019C0012'
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) | 2,896,670,167.45 | 2.90 billion | 192 |
Insight
Award activity under PIID 80JSC019C0012 is fully concentrated in NAICS 541715, Research and Development in the Physical, Engineering, and Life Sciences (except Nanotechnology and Biotechnology). Over the 5-year window, this NAICS accounts for $2.90 billion across 192 awards, indicating a highly focused procurement profile with no diversification across other NAICS codes in the provided data. This concentration suggests the vehicle is used primarily for research and development services within this technical 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 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 |
|---|---|---|---|---|
| 1555 | SPACE VEHICLES | 2,896,670,167.45 | 2.90 billion | 192 |
Insight
Over the 5-year window, obligations for PIID 80JSC019C0012 are fully concentrated in PSC 1555, Space Vehicles, with $2.90 billion obligated across 192 awards. This indicates a highly focused procurement profile with no observable diversification across PSCs in the provided results. The pattern suggests sustained activity centered on a single space-vehicle category rather than a broader mix of product types.
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 5 YEAR
AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
| Year | Total Obligated | Readable | Actions |
|---|---|---|---|
| 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 under PIID 80JSC019C0012 were sustained at a high level across the 5-year window, ranging from $488.94 million to $735.21 million annually. Funding increased from 2021 to 2023, dipped in 2024, and then rose sharply in 2025 to the period high, indicating renewed concentration of obligation activity in the most recent year. Award counts remained relatively stable, between 35 and 41 awards per year, suggesting the obligation changes were driven more by award value than by volume.
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.