Interagency Contracting Authority
Boolean or coded flag indicating whether the award used interagency contracting authority under the Legislative Mandates section. In FPDS, the value may appear as a code such as "X" to indicate not applicable or a non-standard coded state, so the stored value should be interpreted with the field's observed code set rather than as a plain true/false in all cases.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Filter awards that used interagency contracting authority
- Measure volume or obligation amounts associated with interagency vehicles
- Support compliance and acquisition policy reviews
Common Mistakes
- Assuming every non-null value is an affirmative yes
- Treating "X" as a literal yes/no value without checking the code set
Query Guidance
Use explicit value logic based on the dataset's observed codes, for example `WHERE interagencyContractingAuthority IN ('Y','YES','1')` only if those values are confirmed as affirmative. Exclude or separately classify coded non-applicable values such as `X`, and do not coerce the field to a generic boolean until you have validated the source encoding.
SQL Examples
Preview values
SELECT
content__award__legislativeMandates__interagencyContractingAuthority AS interagency_contracting_authority
FROM fpds.data
WHERE content__award__legislativeMandates__interagencyContractingAuthority IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__award__legislativeMandates__interagencyContractingAuthority AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__award__legislativeMandates__interagencyContractingAuthority IS NOT NULL
GROUP BY flag_value
ORDER BY record_count DESC
Each dictionary item includes SQL-ready examples generated alongside the variable metadata, allowing immediate use in FPDS Query for filtering, aggregation, and analysis.