Award Number

Award Number 8000 / NNK13MA14C Federal Contract Action Summary (Last 5 Years)

Federal procurement analysis page for award number NNK13MA14C, covering award activity for agency ID 8000 over the last 5 years.

This page summarizes award-level procurement activity for PIID NNK13MA14C within agency ID 8000. The analysis window covers the last 5 years and captures 94 award actions with total obligated funding of 668.89 million.

Generated at 03/20/2026

Analysis period: Last 5 years

Total obligated is 668,894,376.87, and the average action value is 7,115,897.63 across 94 actions.

Agency ID
8000
PIID
NNK13MA14C
Type
Award
Total Obligated
668.89 million
668,894,376.87
Actions
94
Average Action Value
7,115,897.63

Overview

Award number NNK13MA14C shows 94 recorded actions in the last 5 years for agency ID 8000. Total obligated funding is 668,894,376.87, with an average action value of 7,115,897.63. The page is intended to support review of award activity at the PIID level.

How to use this page

Use this page to review the award’s obligation history and compare the number of actions with the average action value. The data can also support basic procurement analysis for agency-level tracking over the stated window.

Top Agencies

SELECT
    content__award__purchaserInformation__contractingOfficeAgencyID AS agency_id,
    content__award__purchaserInformation__contractingOfficeAgencyID__name AS agency_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '8000' AND content__award__awardID__awardContractID__PIID = 'NNK13MA14C'
    AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
    AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__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 668,894,376.87 668.89 million 94

Insight

Within the 5-year window, all reported obligations for PIID NNK13MA14C are concentrated in a single agency: the National Aeronautics and Space Administration (agency 8000). NASA accounts for $668.89 million across 94 awards, indicating a fully concentrated distribution with no other agencies represented in this section. This pattern suggests the award activity tracked here is entirely agency-specific rather than dispersed 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__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        content__award__awardID__awardContractID__agencyID = '8000' AND content__award__awardID__awardContractID__PIID = 'NNK13MA14C'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY
        vendor_name,
        cage_code
)
ORDER BY total_obligated DESC
LIMIT 10
Vendor CAGE Code Total Obligated Readable Actions
JACOBS TECHNOLOGY INC. 07486 668,894,376.87 668.89 million 94

Insight

JACOBS TECHNOLOGY INC. accounts for all reported top-vendor obligation in this 5-year window for award NNK13MA14C, with $668.89 million across 94 awards. This indicates a highly concentrated vendor profile for the period, with obligations and award activity centered on a single supplier. The distribution suggests limited vendor diversification within the reported top-vendor segment.

Top NAICS

SELECT
    content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
    content__award__productOrServiceInformation__principalNAICSCode__description AS naics_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '8000' AND content__award__awardID__awardContractID__PIID = 'NNK13MA14C'
    AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
    AND content__award__productOrServiceInformation__principalNAICSCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__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) 668,894,376.87 668.89 million 94

Insight

Over the 5-year window, obligations for PIID NNK13MA14C are fully concentrated in NAICS 541712, Research and Development in the Physical, Engineering, and Life Sciences (except Biotechnology). This category accounts for $668.89 million across 94 awards, indicating a highly concentrated acquisition profile with no other NAICS codes represented in the provided data.

Top PSC Codes

SELECT
    content__award__productOrServiceInformation__productOrServiceCode AS psc_code,
    content__award__productOrServiceInformation__productOrServiceCode__description AS psc_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '8000' AND content__award__awardID__awardContractID__PIID = 'NNK13MA14C'
    AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__award__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
    psc_code,
    psc_name
ORDER BY total_obligated DESC
LIMIT 10
PSC Code Description Total Obligated Readable Actions
AR36 R&D- SPACE: FLIGHT (MANAGEMENT/SUPPORT) 668,894,376.87 668.89 million 94

Insight

Over the past 5 years, award NNK13MA14C is concentrated in PSC AR36, R&D- SPACE: FLIGHT (MANAGEMENT/SUPPORT), with $668.89 million obligated across 94 awards. This indicates a sustained emphasis on spaceflight-related research and support services under a single PSC category, rather than a broadly distributed obligation profile. The concentration suggests AR36 is the dominant driver of obligated value for this award in the period reviewed.

Annual Trend

SELECT
    toYear(parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate)) AS year,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable,
    count() AS award_count
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '8000' AND content__award__awardID__awardContractID__PIID = 'NNK13MA14C'
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2021 339,733,342.56 339.73 million 48
2022 321,666,956.96 321.67 million 36
2023 9,103,088.84 9.10 million 7
2024 -1,609,011.49 -1.61 million 3

Insight

Obligations for PIID NNK13MA14C were heavily concentrated in 2021 and 2022, with $339.73 million across 48 awards in 2021 and $321.67 million across 36 awards in 2022. Funding then declined sharply in 2023 to $9.10 million across 7 awards, followed by a net negative obligation of $1.61 million across 3 awards in 2024. The pattern indicates a pronounced downward shift in both award volume and obligated dollars over the period.

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.