The Space Development Agency (SDA) page summarizes federal procurement activity for agency ID 97SD over the last full year. No award actions are shown in the provided data for this period.
Federal Agency
SPACE DEVELOPMENT AGENCY (SDA) Federal Contract Obligations (Last Year)
FPDS summary page for the Space Development Agency (SDA), agency ID 97SD, covering the last full year of award activity.
The provided dataset shows zero award actions and no populated obligation, vendor, NAICS, or annual trend details.
About SPACE DEVELOPMENT AGENCY (SDA) federal contract activity
During the last full year, FPDS Query shows no reported awards for the Space Development Agency (SDA), Agency ID 97SD, within the analyzed dataset. With an award count of 0, there is no recorded obligated amount or average award value to summarize for this period.
Vendor concentration and leading contractors
No top vendors can be identified for SDA in the last full year because the agency has no recorded awards in the analysis window. As a result, vendor concentration and supplier activity cannot be assessed from this dataset.
Industry profile based on NAICS activity
No NAICS patterns are available for SDA in the last full year because there are no reported awards to attribute to industry categories. Industry mix, obligation distribution, and procurement focus by NAICS cannot be derived from the current data.
Annual contract trend over the analysis window
The annual trend for the last full year is flat at zero recorded awards, with no observable obligation activity in the dataset. Because the trend series contains no entries, there is no basis for comparing month-to-month or year-over-year procurement movement.
How to interpret this page
This summary uses the provided FPDS Query analysis window of the last full year and reflects only the records available in the supplied dataset. Where no awards, obligations, vendors, or NAICS values are present, the narrative is limited to the absence of recorded activity rather than inference.
Top Vendors
SELECT
vendor_name,
total_obligated,
award_count,
formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
SELECT
content__award__vendor__vendorHeader__vendorName AS vendor_name,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count
FROM fpds.data
WHERE
contract_type = 1
AND content__award__purchaserInformation__contractingOfficeAgencyID = '97SD'
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
)
ORDER BY total_obligated DESC
LIMIT 10
| Vendor | Total Obligated | Readable | Award Actions |
|---|
Insight
No notable vendor concentration was available for this analysis window.
Top NAICS
SELECT
naics_code,
naics_name,
total_obligated,
award_count,
formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
SELECT
content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
anyHeavy(content__award__productOrServiceInformation__principalNAICSCode__description) AS naics_name,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count
FROM fpds.data
WHERE
contract_type = 1
AND content__award__purchaserInformation__contractingOfficeAgencyID = '97SD'
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
)
ORDER BY total_obligated DESC
LIMIT 10
| NAICS Code | Description | Total Obligated | Readable | Award Actions |
|---|
Insight
No notable NAICS concentration was available for this analysis window.
Annual Trend
SELECT
year,
total_obligated,
award_count,
formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
SELECT
toYear(parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate)) AS year,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count
FROM fpds.data
WHERE
contract_type = 1
AND content__award__purchaserInformation__contractingOfficeAgencyID = '97SD'
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 DESC
| Year | Total Obligated | Readable | Award Actions |
|---|
Insight
No annual trend data was available for this analysis window.
Use FPDS Query for deeper analysis
Explore federal procurement data with custom SQL, fast filtering, and deeper market analysis across agencies, vendors, NAICS, and contract trends.
Continue from this last full year view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.