Award Number

Award Number 4900 / NSFDACS1219442 Federal Contract Action Summary (Last 10 Years)

Federal procurement analysis for award number NSFDACS1219442 at agency 4900 over the last 10 years.

This page summarizes award NSFDACS1219442 for agency 4900 across the last 10 years. The award shows 124 actions and a total obligated amount of 2.30 billion, with an average action value of 18,578,044.57.

Generated at 03/20/2026

Analysis period: Last 10 years

Financial totals shown here use the exact obligated amount of 2303677526.64 and the readable rounded value of 2.30 billion.

Agency ID
4900
PIID
NSFDACS1219442
Type
Award
Total Obligated
2.30 billion
2,303,677,526.64
Actions
124
Average Action Value
18,578,044.57

Overview

Award NSFDACS1219442 under agency 4900 records 124 award actions within the last 10 years. Total obligated funding is 2.30 billion, with the exact amount reported as 2303677526.64. The average action value is 18,578,044.57, indicating substantial individual obligations across the period.

How to use this page

Use this page to review the award’s obligation history and action count over the analysis window. The figures support quick comparison of total funding, action volume, and average action value for this PIID.

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 = '4900' AND content__award__awardID__awardContractID__PIID = 'NSFDACS1219442'
    AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
    AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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
4900 NATIONAL SCIENCE FOUNDATION 2,303,677,526.64 2.30 billion 124

Insight

Over the 10-year window, awards tied to PIID NSFDACS1219442 are fully concentrated within the National Science Foundation (agency ID 4900). NSF accounts for 124 awards totaling $2.30 billion in obligated funding, indicating a single-agency funding profile with no visible cross-agency distribution in the provided data. This level of concentration suggests the award activity is entirely associated with NSF-managed obligations for this PIID.

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 = '4900' AND content__award__awardID__awardContractID__PIID = 'NSFDACS1219442'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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
LEIDOS INNOVATIONS CORPORATION 7MWB4 2,145,469,675.26 2.15 billion 108
LOCKHEED MARTIN CORPORATION 140,880,190.38 140.88 million 14
LEIDOS INNOVATIONS CORPORATION 17,327,661.00 17.33 million 2

Insight

Obligations for PIID NSFDACS1219442 are highly concentrated in LEIDOS INNOVATIONS CORPORATION, which accounts for $2.15 billion across 108 awards. LOCKHEED MARTIN CORPORATION is a distant second at $140.88 million across 14 awards, while a separate LEIDOS INNOVATIONS CORPORATION entry reflects an additional $17.33 million across 2 awards. Overall, the award history is dominated by one vendor, with materially smaller obligations to the other listed vendors.

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 = '4900' AND content__award__awardID__awardContractID__PIID = 'NSFDACS1219442'
    AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
    AND content__award__productOrServiceInformation__principalNAICSCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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
561210 FACILITIES SUPPORT SERVICES 2,303,677,526.64 2.30 billion 124

Insight

Obligations for this award are fully concentrated in NAICS 561210, Facilities Support Services, with $2.30 billion across 124 awards in the 10-year window. This indicates a highly concentrated procurement profile with no diversification across other NAICS codes in the provided data. The volume of awards suggests sustained use of this services category over time rather than isolated activity.

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 = '4900' AND content__award__awardID__awardContractID__PIID = 'NSFDACS1219442'
    AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__award__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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
M1HA OPERATION OF GOVERNMENT-OWNED CONTRACTOR-OPERATED (GOCO) R&D FACILITIES 2,303,677,526.64 2.30 billion 124

Insight

Obligations are fully concentrated in PSC M1HA, Operation of Government-Owned Contractor-Operated (GOCO) R&D Facilities, with $2.30 billion across 124 awards over the 10-year window. This indicates a highly focused procurement pattern rather than a diversified mix of product or service categories. The award activity and obligated dollars both point to sustained reliance on this PSC for the cited entity and period.

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 = '4900' AND content__award__awardID__awardContractID__PIID = 'NSFDACS1219442'
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2016 140,880,190.38 140.88 million 14
2017 182,624,037.78 182.62 million 18
2018 248,475,768.33 248.48 million 12
2019 300,013,079.26 300.01 million 10
2020 252,012,309.49 252.01 million 12
2021 240,656,782.62 240.66 million 10
2022 140,166,747.01 140.17 million 12
2023 266,932,163.87 266.93 million 14
2024 276,855,974.05 276.86 million 13
2025 255,060,473.85 255.06 million 9

Insight

Obligations for PIID NSFDACS1219442 are concentrated in the later years of the 10-year window, with annual totals ranging from 140.17 million in 2022 to 300.01 million in 2019. After rising from 140.88 million in 2016 to a peak in 2019, obligations declined in 2020–2022, then rebounded in 2023–2024 and remained elevated in 2025 at 255.06 million. Award counts were comparatively stable at 9 to 18 per year, indicating that year-to-year obligation changes were driven more by award value than by large shifts in award volume.

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.