Vehicle Number

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

Federal procurement analysis for vehicle number NNL14AQ00C under agency ID 8000 covers the last 10 years of recorded award actions.

This page summarizes the procurement record associated with vehicle number NNL14AQ00C for agency ID 8000 over the last 10 years. The record shows 39 award actions with total obligations of $122.62 million.

Generated at 03/21/2026

Analysis period: Last 10 years

Amounts are based on the provided exact total obligated value of $122,615,887 and the reported average action value of $3,143,997.1.

Agency ID
8000
PIID
NNL14AQ00C
Type
Vehicle
Total Obligated
122.62 million
122,615,887.00
Actions
39
Average Action Value
3,143,997.10

Overview

The analysis window spans the last 10 years and captures 39 award actions tied to vehicle number NNL14AQ00C. Total obligated value is $122,615,887, reported here as $122.62 million for readability. The average action value is $3,143,997.1.

How to use this page

This page is useful for reviewing obligation volume and action frequency associated with the vehicle record. It provides a compact summary for procurement monitoring, trend review, and record-level reference within agency ID 8000.

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 = 'NNL14AQ00C'
    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 122,615,887.00 122.62 million 39

Insight

For PIID NNL14AQ00C over the 10-year window, obligated activity is concentrated entirely within NASA (agency ID 8000). NASA accounts for $122.62 million across 39 awards, indicating a single-agency distribution with no visible cross-agency spread in the provided data. This concentration suggests the vehicle has been used consistently within one agency rather than broadly across the federal portfolio.

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 = 'NNL14AQ00C'
        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 = 'NNL14AQ00C'
    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
541712 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT BIOTECHNOLOGY) 122,615,887.00 122.62 million 39

Insight

Over the 10-year window for vehicle NNL14AQ00C under agency 8000, obligations are fully concentrated in NAICS 541712, Research and Development in the Physical, Engineering, and Life Sciences (except Biotechnology). This NAICS accounts for $122.62 million across 39 awards, indicating a consistent acquisition pattern concentrated in a single technical services category. No other NAICS codes are represented in the provided data, so there is no visible diversification across industry sectors in this period.

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 = 'NNL14AQ00C'
    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
AR11 R&D- SPACE: AERONAUTICS/SPACE TECHNOLOGY (BASIC RESEARCH) 127,631,027.00 127.63 million 36
AR11 SPACE R&D SERVICES; SPACE FLIGHT, RESEARCH AND SUPPORTING ACTIVITIES; BASIC RESEARCH -5,015,140.00 -5.02 million 3

Insight

Over the 10-year window, obligations under PIID NNL14AQ00C are heavily concentrated in PSC AR11, with $127.63 million across 36 awards. A smaller offsetting amount of -$5.02 million is also recorded under AR11 across 3 awards, reducing the net profile but not changing the dominance of this PSC. Overall, the vehicle’s obligated activity in this period is highly concentrated in a single PSC category with limited dispersion.

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 = 'NNL14AQ00C'
    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
2016 82,350,578.00 82.35 million 13
2017 35,430,449.00 35.43 million 15
2018 8,000,000.00 8.00 million 5
2019 1,850,000.00 1.85 million 2
2020 0.00 0.00 1
2024 -3,649,702.00 -3.65 million 2
2025 -1,365,438.00 -1.37 million 1

Insight

Obligations for PIID NNL14AQ00C were heavily concentrated in 2016 and 2017, which together accounted for the vast majority of the 10-year activity at 82.35 million and 35.43 million across 28 awards. Funding then declined sharply in 2018 and 2019, with only 8.00 million and 1.85 million obligated, followed by a zero-obligation year in 2020 despite one award. The recent period shows negative obligations in 2024 and 2025, indicating deobligations that further reduced cumulative obligated value.

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.