viewedSchoolProfile
A user viewed the profile of a school.
A user viewed the profile of a school.
| Field | Type | Required | Description |
|---|---|---|---|
listing | listing | No | The listing to which this school is related. |
name | string | Yes | The name of the school. |
address | address | No | The address of the school. |
isElementarySchool | boolean | No | This is an elementary school. |
isMiddleSchool | boolean | No | This is a middle school. |
isHighSchool | boolean | No | This is a high school. |
1/* viewedSchoolProfile example */23var data = {4 "listing": listing,5 "name": "Welton Academy for Boys",6 "isHighSchool": true7};89brytescore( "realestate.viewedSchoolProfile", data );
Updated July 25, 2026