Vehicle Number

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

Federal procurement profile for vehicle number under agency 8000 and PIID NNL16AA05C, summarizing award activity over the last 5 years.

This page summarizes vehicle number procurement activity for agency 8000 under PIID NNL16AA05C across the last 5 years. Total obligations were 102.64 million across 38 award actions, with an average action value of 2,701,012.34.

Generated at 03/21/2026

Analysis period: Last 5 years

Figures reflect the provided analysis window and may differ from other reporting views due to rounding or timing of updates.

Agency ID
8000
PIID
NNL16AA05C
Type
Vehicle
Total Obligated
102.64 million
102,638,469.00
Actions
38
Average Action Value
2,701,012.34

Overview

Over the last 5 years, vehicle number under agency 8000 and PIID NNL16AA05C recorded 38 award actions with total obligated dollars of 102,638,469. The average action value was 2,701,012.34, indicating a procurement profile with recurring obligation activity rather than a single isolated award.

How to use this page

This page is useful for reviewing obligation concentration, award frequency, and the overall scale of procurement tied to the listed vehicle number. The totals provide a compact view of activity for FPDS-style analysis within the stated 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 = 'NNL16AA05C'
    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 102,638,469.00 102.64 million 38

Insight

Within the 5-year window, all reported obligations for vehicle NNL16AA05C are concentrated in a single agency: the National Aeronautics and Space Administration (Agency ID 8000). NASA accounts for $102.64 million across 38 awards, indicating exclusive agency-specific activity in the provided data. This distribution suggests the vehicle is heavily concentrated rather than broadly distributed across 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 = 'NNL16AA05C'
        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 = 'NNL16AA05C'
    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) 102,638,469.00 102.64 million 38

Insight

Over the 5-year window, obligations for PIID NNL16AA05C under agency 8000 are concentrated entirely in NAICS 541712, Research and Development in the Physical, Engineering, and Life Sciences (except Biotechnology). This single NAICS accounts for $102.64 million across 38 awards, indicating a highly focused procurement profile with no observed diversification across other NAICS codes 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 = 'NNL16AA05C'
    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
B539 SPECIAL STUDIES/ANALYSIS- AERONAUTICAL/SPACE 102,638,469.00 102.64 million 38

Insight

Over the 5-year window, obligations under PIID NNL16AA05C are concentrated entirely in PSC B539, Special Studies/Analysis – Aeronautical/Space. This PSC accounts for $102.64 million across 38 awards, indicating sustained use of the vehicle for specialized aeronautical and space analysis requirements rather than a diversified PSC mix.

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 = 'NNL16AA05C'
    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 44,856,060.00 44.86 million 16
2022 48,402,249.00 48.40 million 14
2023 9,380,160.00 9.38 million 8

Insight

Obligations under PIID NNL16AA05C were concentrated in 2021 and 2022, at $44.86 million and $48.40 million, respectively, before declining sharply to $9.38 million in 2023. Award volume also decreased over the period, from 16 awards in 2021 to 14 in 2022 and 8 in 2023, indicating both lower dollar value and fewer actions in the most recent year. This pattern suggests a clear contraction in annual activity during the 5-year window provided.

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.