Award Number

Award Number 8000 / NNM07AB03C Federal Contract Action Summary (Last Year)

Award number NNM07AB03C for Agency ID 8000 shows 45 action records in the last full year with $510.22 million obligated.

This page summarizes award-level procurement activity for award number NNM07AB03C under Agency ID 8000 during the last full year. Total obligated spending was $510,224,654 across 45 actions, for an average action value of $11,338,325.64.

Generated at 03/20/2026

Analysis period: Last full year

Obligation totals are shown as reported for the selected analysis window and may differ from later revised records.

Agency ID
8000
PIID
NNM07AB03C
Type
Award
Total Obligated
510.22 million
510,224,654.00
Actions
45
Average Action Value
11,338,325.64

Overview

Award number NNM07AB03C is associated with $510,224,654 in total obligations in the last full year. The record includes 45 award actions, which produces an average action value of $11,338,325.64. These figures provide a concise view of award-level activity for Agency ID 8000 over the selected period.

How to use this page

Use this page to review spending volume and action frequency for award number NNM07AB03C. The totals support basic analysis of obligation magnitude and how activity is distributed across the 45 recorded actions. For deeper review, compare this award against other award records in the same agency and time 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 = 'NNM07AB03C'
    AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
    AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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 510,224,654.00 510.22 million 45

Insight

For PIID NNM07AB03C over the 1-year window, all reported obligations are concentrated in a single top agency: the National Aeronautics and Space Administration (NASA). NASA accounts for $510.22 million across 45 awards, indicating highly concentrated funding activity within one agency rather than a distributed award pattern.

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 = 'NNM07AB03C'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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
THE BOEING COMPANY 3A768 510,224,654.00 510.22 million 45

Insight

Over the 1-year window, obligation activity for PIID NNM07AB03C is fully concentrated in a single vendor, THE BOEING COMPANY (CAGE 3A768). Boeing accounts for 45 awards totaling $510.22 million, indicating complete vendor concentration for this award in the period reviewed.

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 = 'NNM07AB03C'
    AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
    AND content__award__productOrServiceInformation__principalNAICSCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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
336414 GUIDED MISSILE AND SPACE VEHICLE MANUFACTURING 510,224,654.00 510.22 million 45

Insight

Over the last 1 year, obligations for PIID NNM07AB03C under Agency ID 8000 are fully concentrated in NAICS 336414, Guided Missile and Space Vehicle Manufacturing. This NAICS accounts for $510.22 million across 45 awards, indicating a highly focused obligation pattern within a single industrial sector. No other NAICS codes are present in the provided rows, so the observed distribution is entirely concentrated in this category.

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 = 'NNM07AB03C'
    AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__award__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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
AR11 SPACE R&D SERVICES; SPACE FLIGHT, RESEARCH AND SUPPORTING ACTIVITIES; BASIC RESEARCH 510,224,654.00 510.22 million 45

Insight

Over the last 1 year, obligations for award NNM07AB03C under agency 8000 are concentrated entirely in PSC AR11, with $510.22 million obligated across 45 actions. This indicates a highly focused procurement profile centered on space R&D services, specifically basic research and supporting activities. No other PSCs are reflected in the provided rows, so the observed activity is fully concentrated in a single product/service category.

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 = 'NNM07AB03C'
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 510,224,654.00 510.22 million 45

Insight

For PIID NNM07AB03C, FY2025 obligated amounts total $510.22 million across 45 awards, indicating a high concentration of obligations in a single fiscal year within the 1-year window. The average obligation per award is substantial, suggesting the activity is driven by a relatively small number of large awards rather than broad distribution across many transactions. This pattern points to concentrated funding execution in FY2025.

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 full year view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.