Is Manufacturer of Goods
Boolean or coded flag indicating whether the vendor identified on the award record is a manufacturer of the goods being provided. It is stored within the vendor site detail portion of the Other Transaction Award record and captures a specific line-of-business attribute for the site associated with the award. If the source system uses coded values, the observed value should be treated as a status indicator rather than free text.
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
- Segment awards to manufacturers versus non-manufacturers
- Support supply-chain and industrial base analysis
- Filter records for compliance or sourcing studies
Common Mistakes
- Treating the flag as a descriptive text field instead of a coded indicator
- Assuming the value applies to the parent company rather than the specific vendor site
Query Guidance
Filter explicitly on the value that represents affirmative status in your dataset, and verify the encoding before hard-coding comparisons. In SQL, normalize to a boolean interpretation when possible, and include null-handling logic to separate unknown from false. Example pattern: WHERE isManufacturerOfGoods IN (1, '1', 'Y', 'Yes') after validating the source encoding.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorLineOfBusiness__isManufacturerOfGoods AS is_manufacturer_of_goods
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorLineOfBusiness__isManufacturerOfGoods IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorLineOfBusiness__isManufacturerOfGoods AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__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.