Interagency Contracting Authority Description
Human-readable description for the award-level interagency contracting authority value. This field explains the coded or selected authority in plain language, such as "NOT APPLICABLE," rather than storing the underlying code itself.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Translate interagency authority codes into readable output for reports
- Validate whether an award used an interagency contracting mechanism
- Support joins or display logic alongside the paired coded authority field
Common Mistakes
- Filtering on the description text as if it were the underlying code
- Assuming the description is always standardized across records or time periods
Query Guidance
Use this field for display, validation, and descriptive grouping only. In SQL, prefer joining or filtering on the paired code field when available, and use this description field to label results or to inspect distinct observed values such as 'NOT APPLICABLE' before normalizing categories.
SQL Examples
Preview values
SELECT
content__award__legislativeMandates__interagencyContractingAuthority__description AS interagency_contracting_authority_description
FROM fpds.data
WHERE content__award__legislativeMandates__interagencyContractingAuthority__description IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__legislativeMandates__interagencyContractingAuthority__description AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__legislativeMandates__interagencyContractingAuthority__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.