Non Traditional Government Contractor Participation
A coded contract-data attribute indicating whether the other transaction IDV involves participation by nontraditional government contractors. The value is typically an abbreviation or code rather than a free-text narrative, so it should be treated as a categorical indicator tied to the FPDS record.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Filter other transaction IDVs by participation status
- Group awards to compare nontraditional contractor involvement across periods or agencies
- Support compliance or portfolio reporting on innovative acquisition activity
Common Mistakes
- Treating the code as a narrative description instead of a categorical value
- Assuming missing or unrecognized codes mean no participation
Query Guidance
Use exact-code filters or CASE mappings after validating the code list, for example `WHERE nonTraditionalGovernmentContractorParticipation = 'NSP'`. When aggregating, group by the raw code and, if available, join to the corresponding description table or decode values to avoid misclassification.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__contractData__nonTraditionalGovernmentContractorParticipation AS non_traditional_government_contractor_participation
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__contractData__nonTraditionalGovernmentContractorParticipation IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionIDV__contractDetail__contractData__nonTraditionalGovernmentContractorParticipation AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__contractData__nonTraditionalGovernmentContractorParticipation 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.