Principal NAICS Code Description
Human-readable description for the principal NAICS code associated with the IDV. It is the textual label that corresponds to the coded Principal NAICS Code value, identifying the primary industry category for the procurement record.
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
- Labeling NAICS-based procurement groupings in reports
- Validating the meaning of the principal NAICS code
- Filtering or summarizing IDVs by industry category
Common Mistakes
- Grouping on the description instead of the code, which can split equivalent categories due to formatting differences
- Assuming the description is authoritative if it does not match the paired code
Query Guidance
Use this field primarily as a display label joined to or selected alongside the principal NAICS code. In SQL, group and filter on the coded NAICS field when possible, and select this description for readable output; if descriptions are inconsistent, normalize on the code and avoid using the text as the sole key.
SQL Examples
Preview values
SELECT
content__IDV__productOrServiceInformation__principalNAICSCode__description AS principal_n_a_i_c_s_code_description
FROM fpds.data
WHERE content__IDV__productOrServiceInformation__principalNAICSCode__description IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__productOrServiceInformation__principalNAICSCode__description AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__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.