Is Manufacturer of Goods
Boolean or coded flag indicating whether the vendor reports itself as a manufacturer of goods at the vendor site level. A value such as 0 typically means no, while a positive or coded value indicates yes or another system-specific encoded state.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
- Contractor profiling and competitor analysis
Common Usage
- Identify awards to manufacturers versus non-manufacturers
- Support supplier base and industrial capability analysis
- Filter records for set-aside, sourcing, or compliance reviews
Common Mistakes
- Assuming the value applies to the entire legal entity rather than the reported vendor site
- Treating coded values as standard booleans without checking observed encodings
Query Guidance
Use this field in WHERE clauses after confirming its encoding. For boolean extracts, filter on the yes value directly; for coded extracts, join or inspect the description mapping and group by the raw code to avoid misclassification.
SQL Examples
Preview values
SELECT
content__award__vendor__vendorSiteDetails__vendorLineOfBusiness__isManufacturerOfGoods AS is_manufacturer_of_goods
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__vendorLineOfBusiness__isManufacturerOfGoods IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__award__vendor__vendorSiteDetails__vendorLineOfBusiness__isManufacturerOfGoods AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__vendorLineOfBusiness__isManufacturerOfGoods 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.