Vehicle Number

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

Federal procurement analysis for vehicle number NNA17BF53C for Agency ID 8000 over the last 5 years.

This page summarizes award activity for vehicle number NNA17BF53C under Agency ID 8000 across the last 5 years. The record shows 59 award actions with total obligations of $66.13 million.

Generated at 03/21/2026

Analysis period: Last 5 years

Dollar figures reflect the provided readable total of $66.13 million and the exact total obligated amount of $66,126,338.49.

Agency ID
8000
PIID
NNA17BF53C
Type
Vehicle
Total Obligated
66.13 million
66,126,338.49
Actions
59
Average Action Value
1,120,785.40

Overview

The procurement history for vehicle number NNA17BF53C includes 59 award actions in the last 5 years, with an average action value of $1,120,785.40. Total obligated funding is $66,126,338.49, which rounds to $66.13 million. This page is intended to support review of the award volume and obligation level associated with this vehicle record.

How to use this page

Use this page to assess activity trends, compare this vehicle record against other FPDS query results, and review the scale of obligations tied to Agency ID 8000. The figures provide a concise starting point for identifying how much was obligated and how often award actions occurred during 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 = 'NNA17BF53C'
    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 66,126,338.49 66.13 million 59

Insight

For PIID NNA17BF53C over the 5-year window, all reported obligated dollars in the top_agencies section are concentrated in a single agency: National Aeronautics and Space Administration (NASA). NASA accounts for $66.13 million across 59 awards, indicating full agency-level concentration within the provided data. This distribution suggests the vehicle’s obligation history, as captured here, is entirely attributable to NASA rather than being spread across multiple agencies.

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 = 'NNA17BF53C'
        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 = 'NNA17BF53C'
    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) 66,126,338.49 66.13 million 59

Insight

Over the 5-year window, obligations under PIID NNA17BF53C are concentrated entirely in NAICS 541712, Research and Development in the Physical, Engineering, and Life Sciences (except Biotechnology). This category accounts for $66.13 million across 59 awards, indicating a highly focused procurement profile with no other NAICS codes represented in the provided data. The award activity suggests repeated use of the same research and development classification rather than a diversified obligations mix.

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 = 'NNA17BF53C'
    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
AR45 R&D- SPACE: OPERATIONS, TRACKING AND DATA ACQUISITION (OPERATIONAL SYSTEMS DEVELOPMENT) 66,126,338.49 66.13 million 59

Insight

Obligations are fully concentrated in PSC AR45, which accounts for $66.13 million across 59 awards over the 5-year window. This indicates a narrowly focused procurement profile for this vehicle, with all observed activity tied to R&D space operations, tracking, and data acquisition. The award count suggests repeated use of the vehicle for this requirement rather than broad PSC diversification.

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 = 'NNA17BF53C'
    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 33,097,976.97 33.10 million 19
2022 22,940,811.08 22.94 million 15
2023 10,127,072.53 10.13 million 20
2024 -39,522.09 -39.52 thousand 5

Insight

Obligations for PIID NNA17BF53C declined sharply over the period, falling from 33.10 million in 2021 to 22.94 million in 2022 and 10.13 million in 2023, before turning slightly negative in 2024. Award activity was more dispersed than obligations would suggest, with 19 awards in 2021, 15 in 2022, 20 in 2023, and only 5 in 2024. The pattern indicates a concentrated decline in obligated dollars despite relatively sustained award counts through 2023.

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.