Non Traditional Government Contractor Participation Description
Human-readable description for the coded value of non-traditional government contractor participation on an Other Transaction award. It provides the text label that explains the participation attribute recorded in the paired FPDS field.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Decode participation status for Other Transaction awards
- Validate or label coded participation fields in reports
- Filter awards involving non-traditional contractor participation
Common Mistakes
- Using the description field as if it were the underlying code
- Assuming consistent wording across all records without checking observed values
Query Guidance
Use this field for display, labeling, and interpretation of the paired participation code. In SQL, join or select it alongside the coded participation field, and group on the code rather than the description when the goal is stable aggregation; use DISTINCT or LIKE only for review of observed text values.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__contractData__nonTraditionalGovernmentContractorParticipation__description AS non_traditional_government_contractor_participation_description
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__contractData__nonTraditionalGovernmentContractorParticipation__description IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionAward__contractDetail__contractData__nonTraditionalGovernmentContractorParticipation__description AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__contractData__nonTraditionalGovernmentContractorParticipation__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.