Principal NAICS Code Description
Human-readable description of the procurement's principal NAICS code. It is the text label paired with the coded Principal NAICS Code field and identifies the main industry classification associated with the award.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
- Market segmentation by industry or PSC
Common Usage
- Classifying awards by industry sector
- Joining or validating against NAICS-based reporting
- Reviewing market concentration and category spend
Common Mistakes
- Treating the description as a stable identifier instead of a label
- Grouping only by description when the paired code is available and more reliable
Query Guidance
Select and group by the principal NAICS code for analysis, and include this description field for readability in outputs. In SQL, use it as a display label or validation check; if codes and descriptions disagree, flag the record and investigate the source data.
SQL Examples
Preview values
SELECT
content__award__productOrServiceInformation__principalNAICSCode__description AS principal_n_a_i_c_s_code_description
FROM fpds.data
WHERE content__award__productOrServiceInformation__principalNAICSCode__description IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__productOrServiceInformation__principalNAICSCode__description AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__productOrServiceInformation__principalNAICSCode__description IS NOT NULL
GROUP BY value
ORDER BY record_count DESC
LIMIT 25
Each dictionary item includes SQL-ready examples generated alongside the variable metadata, allowing immediate use in FPDS Query for filtering, aggregation, and analysis.