Statutory Exception to Fair Opportunity Description
Human-readable description for the award competition statutory exception to fair opportunity code. It labels the specific exception reported in FPDS rather than storing the underlying coded value itself.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
- Competition and sole-source analysis
Common Usage
- Classifying awards by fair opportunity exception type
- Reviewing noncompetitive or limited-competition justifications
- Producing analyst-readable reports from coded FPDS values
Common Mistakes
- Using the description as the authoritative code rather than the paired coded field
- Assuming similar wording always maps to the same legal authority across records
Query Guidance
Use this field for display, reporting, and text-based review; use the paired exception code for joins, grouping, and filtering when available. If only the description is present, standardize values with case-insensitive matching and inspect observed text variants before aggregating.
SQL Examples
Preview values
SELECT
content__award__competition__statutoryExceptionToFairOpportunity__description AS statutory_exception_to_fair_opportunity_description
FROM fpds.data
WHERE content__award__competition__statutoryExceptionToFairOpportunity__description IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__competition__statutoryExceptionToFairOpportunity__description AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__competition__statutoryExceptionToFairOpportunity__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.