Is School of Forestry
Boolean or coded flag indicating whether the vendor site is identified as a school of forestry. It records the presence of this educational-entity attribute on the vendor site details associated with the Other Transaction Award record.
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 involving schools of forestry
- Segment educational vendor sites by institution subtype
- Support compliance or policy review of educational-partner awards
Common Mistakes
- Interpreting 0 as missing instead of false
- Using this field alone without related educational-entity indicators
Query Guidance
Use a direct equality test or boolean filter, for example WHERE isSchoolOfForestry = 1 for affirmative records. If values are stored as text or coded integers, inspect the distinct values first and normalize NULL, 0, and 1 explicitly in the query.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__isSchoolOfForestry AS is_school_of_forestry
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__isSchoolOfForestry IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__isSchoolOfForestry AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__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.