Is School of Forestry
Boolean or coded flag indicating whether the vendor site is identified as a school of forestry in the award record's vendor site details. It is a site-level attribute under the educational-entity classification, not a measure of contract value or performance.
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
- Filter awards to those associated with schools of forestry
- Segment vendor analysis by educational-entity subtype
- Support compliance or reporting queries involving specialized institutions
Common Mistakes
- Interpreting the flag as the vendor's overall education status rather than a subtype at the site level
- Assuming every falsey value is equivalent without verifying the dataset's coding scheme
Query Guidance
Use this field in WHERE clauses to isolate forestry schools, for example by testing for the affirmative code used in your extract. If the column is coded, compare against the observed affirmative value rather than relying on a generic boolean cast, and combine it with the surrounding educational-entity fields when you need the broader classification context.
SQL Examples
Preview values
SELECT
content__award__vendor__vendorSiteDetails__typeOfEducationalEntity__isSchoolOfForestry AS is_school_of_forestry
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__typeOfEducationalEntity__isSchoolOfForestry IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__award__vendor__vendorSiteDetails__typeOfEducationalEntity__isSchoolOfForestry AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__typeOfEducationalEntity__isSchoolOfForestry 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.