Skip to content
This repository has been archived by the owner on Jun 1, 2022. It is now read-only.
Pure Krome edited this page Feb 1, 2016 · 1 revision

Introduction to OpenRealEstate for .NET

This library is a .NET implementation for the OpenRealEstate json schema. For information and discussions about the schema itself, please refer to the schema repository.

These libraries help you easily create, read and write OpenRealEstate data - all the heavy lifting has been done for you 😄 👍

Structure

ORE.NET is split up into 3 main libraries:-

  • Core
  • Services
  • Validation

Core

This is a library of simplistic classes - the models / building blocks that represent all the types of data that define realestate data.

Services

This library is the main starting point for converting the old-and-long-in-the-tooth RealEstate.com XML data format into the modern OpenRealEstate format.

This contains all the api endpoints to convert from REA-XML to ORE-Json or to help write (serialize) the object model to some nice Json format.

Validation

Finally, this library is used to validate the data that exists in an object model.

Clone this wiki locally