Bridge · Schema

Bridge RESO Property

RESO-normalized Property record served by the Bridge RESO Web API. Field set follows the RESO Data Dictionary 1.7+ with selected high-cardinality fields modeled here.

Real EstateMLSRESOListingsProperty DataBrokersData Distribution

Properties

Name Type Description
ListingKey string Unique key for the listing within the dataset.
ListingId string MLS-assigned listing number.
ListPrice number
OriginalListPrice number
ClosePrice number
StandardStatus string
MlsStatus string
PropertyType string
PropertySubType string
UnparsedAddress string
StreetNumber string
StreetName string
StreetSuffix string
UnitNumber string
City string
StateOrProvince string
PostalCode string
PostalCodePlus4 string
Country string
CountyOrParish string
Latitude number
Longitude number
BedroomsTotal integer
BathroomsTotalInteger integer
BathroomsFull integer
BathroomsHalf integer
LivingArea number
LivingAreaUnits string
LotSizeSquareFeet number
LotSizeAcres number
YearBuilt integer
GarageSpaces number
PoolFeatures array
ParkingFeatures array
PublicRemarks string
PrivateRemarks string
ListAgentKey string
ListAgentMlsId string
ListAgentFullName string
ListOfficeKey string
ListOfficeName string
CoListAgentKey string
BuyerAgentKey string
OnMarketDate string
CloseDate string
ContractStatusChangeDate string
DaysOnMarket integer
ModificationTimestamp string
PhotosChangeTimestamp string
PhotosCount integer
Media array
View JSON Schema on GitHub

JSON Schema

bridge-property-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/bridge-mls/main/json-schema/bridge-property-schema.json",
  "title": "Bridge RESO Property",
  "description": "RESO-normalized Property record served by the Bridge RESO Web API. Field set follows the RESO Data Dictionary 1.7+ with selected high-cardinality fields modeled here.",
  "type": "object",
  "required": ["ListingKey"],
  "properties": {
    "ListingKey": { "type": "string", "description": "Unique key for the listing within the dataset." },
    "ListingId": { "type": "string", "description": "MLS-assigned listing number." },
    "ListPrice": { "type": "number" },
    "OriginalListPrice": { "type": "number" },
    "ClosePrice": { "type": "number" },
    "StandardStatus": { "type": "string", "enum": ["Active", "Pending", "Closed", "Withdrawn", "Canceled", "Expired", "Hold", "ComingSoon", "ActiveUnderContract"] },
    "MlsStatus": { "type": "string" },
    "PropertyType": { "type": "string", "enum": ["Residential", "ResidentialLease", "ResidentialIncome", "Commercial", "CommercialLease", "Land", "Farm", "BusinessOpportunity", "ManufacturedInPark"] },
    "PropertySubType": { "type": "string" },
    "UnparsedAddress": { "type": "string" },
    "StreetNumber": { "type": "string" },
    "StreetName": { "type": "string" },
    "StreetSuffix": { "type": "string" },
    "UnitNumber": { "type": "string" },
    "City": { "type": "string" },
    "StateOrProvince": { "type": "string" },
    "PostalCode": { "type": "string" },
    "PostalCodePlus4": { "type": "string" },
    "Country": { "type": "string" },
    "CountyOrParish": { "type": "string" },
    "Latitude": { "type": "number" },
    "Longitude": { "type": "number" },
    "BedroomsTotal": { "type": "integer" },
    "BathroomsTotalInteger": { "type": "integer" },
    "BathroomsFull": { "type": "integer" },
    "BathroomsHalf": { "type": "integer" },
    "LivingArea": { "type": "number" },
    "LivingAreaUnits": { "type": "string" },
    "LotSizeSquareFeet": { "type": "number" },
    "LotSizeAcres": { "type": "number" },
    "YearBuilt": { "type": "integer" },
    "GarageSpaces": { "type": "number" },
    "PoolFeatures": { "type": "array", "items": { "type": "string" } },
    "ParkingFeatures": { "type": "array", "items": { "type": "string" } },
    "PublicRemarks": { "type": "string" },
    "PrivateRemarks": { "type": "string" },
    "ListAgentKey": { "type": "string" },
    "ListAgentMlsId": { "type": "string" },
    "ListAgentFullName": { "type": "string" },
    "ListOfficeKey": { "type": "string" },
    "ListOfficeName": { "type": "string" },
    "CoListAgentKey": { "type": "string" },
    "BuyerAgentKey": { "type": "string" },
    "OnMarketDate": { "type": "string", "format": "date" },
    "CloseDate": { "type": "string", "format": "date" },
    "ContractStatusChangeDate": { "type": "string", "format": "date" },
    "DaysOnMarket": { "type": "integer" },
    "ModificationTimestamp": { "type": "string", "format": "date-time" },
    "PhotosChangeTimestamp": { "type": "string", "format": "date-time" },
    "PhotosCount": { "type": "integer" },
    "Media": {
      "type": "array",
      "items": { "$ref": "#/$defs/Media" }
    }
  },
  "$defs": {
    "Media": {
      "type": "object",
      "properties": {
        "MediaKey": { "type": "string" },
        "MediaURL": { "type": "string", "format": "uri" },
        "MediaCategory": { "type": "string", "enum": ["Photo", "Video", "VirtualTour", "Document", "FloorPlan"] },
        "MediaType": { "type": "string" },
        "Order": { "type": "integer" },
        "ImageWidth": { "type": "integer" },
        "ImageHeight": { "type": "integer" },
        "ResourceRecordKey": { "type": "string" },
        "ShortDescription": { "type": "string" },
        "ModificationTimestamp": { "type": "string", "format": "date-time" }
      }
    }
  }
}