Materials Supplies Articles Equipment Description
Human-readable description for the paired coded value indicating the status of materials, supplies, articles, or equipment under this IDV legislative mandate element. It explains the underlying code in plain language so the reported status can be understood without decoding abbreviations alone.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Interpreting mandate status for award-level reporting
- Validating coded FPDS values against human-readable labels
- Summarizing legislative mandate attributes in dashboards
Common Mistakes
- Using the description as if it were the authoritative code for joins or filters
- Assuming identical wording across agencies means identical underlying coded values
Query Guidance
Use this field for display, QA checks, and text-based review; in SQL, join or filter on the paired coded field when available, then select this description for readability in result sets. If only the description is present, normalize carefully with case-insensitive comparisons and inspect distinct values before aggregating.
SQL Examples
Preview values
SELECT
content__IDV__legislativeMandates__materialsSuppliesArticlesEquipment__description AS materials_supplies_articles_equipment_description
FROM fpds.data
WHERE content__IDV__legislativeMandates__materialsSuppliesArticlesEquipment__description IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__legislativeMandates__materialsSuppliesArticlesEquipment__description AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__legislativeMandates__materialsSuppliesArticlesEquipment__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.