Vehicle Number

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

Analysis of vehicle number records for PIID NNG15CR64C at agency 8000 over the last 5 years.

This page summarizes vehicle number activity tied to PIID NNG15CR64C for agency 8000 during the last 5 years. The record set includes 52 award actions with total obligations of $242.88 million.

Generated at 03/20/2026

Analysis period: Last 5 years

All dollar figures are based on the provided exact total obligated amount of $242,877,275.19 and average action value of $4,670,716.83.

Agency ID
8000
PIID
NNG15CR64C
Type
Vehicle
Total Obligated
242.88 million
242,877,275.19
Actions
52
Average Action Value
4,670,716.83

Overview

The analyzed vehicle number record for PIID NNG15CR64C shows 52 award actions in the last 5 years. Total obligated dollars reached $242,877,275.19, with an average action value of $4,670,716.83. This gives a compact view of the obligation pattern associated with the vehicle identifier.

How to use this page

Use this page to review the vehicle number as a reporting key for PIID NNG15CR64C and to compare obligation totals and action counts within the 5-year window. The summary supports quick screening of award volume and average action size without adding details beyond the supplied 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 = 'NNG15CR64C'
    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 242,877,275.19 242.88 million 52

Insight

For vehicle NNG15CR64C over the 5-year window, all reported obligation is concentrated in a single agency: NASA (Agency 8000). NASA accounts for $242.88 million across 52 awards, indicating complete agency concentration within the provided data. This pattern suggests the vehicle is used exclusively or near-exclusively by NASA in 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 = 'NNG15CR64C'
        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 = 'NNG15CR64C'
    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) 242,877,275.19 242.88 million 52

Insight

Over the 5-year window, obligations are fully concentrated in NAICS 541712, Research and Development in the Physical, Engineering, and Life Sciences (except Biotechnology), with $242.88 million across 52 awards. This indicates the vehicle is used consistently for a single dominant scientific/technical mission area rather than a diversified mix of NAICS categories. The award volume suggests repeated use of the vehicle within this scope, but no distribution beyond this NAICS is shown in the provided data.

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 = 'NNG15CR64C'
    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
1820 SPACE VEHICLE COMPONENTS 242,877,275.19 242.88 million 52

Insight

Obligations for PIID NNG15CR64C are fully concentrated in PSC 1820, Space Vehicle Components, with $242.88 million across 52 awards over the 5-year window. This indicates a highly focused procurement profile with no visible diversification across other product/service codes in the provided data. The award count suggests repeated buying activity within a single PSC category rather than broad spending distribution.

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 = 'NNG15CR64C'
    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 130,426,051.00 130.43 million 19
2022 96,336,954.46 96.34 million 16
2023 16,082,319.73 16.08 million 15
2024 31,950.00 31.95 thousand 2

Insight

Obligations under PIID NNG15CR64C were heavily concentrated in 2021 and 2022, totaling about $226.76 million across 35 awards, compared with much lower activity in later years. Funding declined sharply in 2023 to $16.08 million across 15 awards, then fell to a minimal $31.95 thousand in 2024 across 2 awards. This pattern indicates a strong front-loaded obligation profile with sharply reduced recent funding 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.