Interagency Contracting Authority Description
Human-readable description associated with the coded Interagency Contracting Authority value in the IDV legislative mandates section. It provides the text label for the authority cited, such as a statutory basis or similar designation.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Identify the stated legal authority for an interagency contract
- Validate or interpret coded authority fields in FPDS extracts
- Group obligations by authority description for compliance analysis
Common Mistakes
- Using the description as if it were the authoritative code value
- Counting distinct text labels without reconciling equivalent code meanings
Query Guidance
Use this field for display, filtering, or validating the coded authority field, but join or group on the paired code when possible. In SQL, normalize text only after confirming the underlying code/value mapping, and use the description to label results rather than to define categories.
SQL Examples
Preview values
SELECT
content__IDV__legislativeMandates__interagencyContractingAuthority__description AS interagency_contracting_authority_description
FROM fpds.data
WHERE content__IDV__legislativeMandates__interagencyContractingAuthority__description IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__legislativeMandates__interagencyContractingAuthority__description AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__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.