Advertisement
Guest User

Untitled

a guest
Apr 21st, 2017
375
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.94 KB | None | 0 0
  1. Real Estate Listing Schema
  2.  
  3. The Real Estate Listing Archetype - Essential properties that define a real estate listing
  4.  
  5. **Properties**
  6.  
  7. | |Type|Description|Required|
  8. |---|----|-----------|--------|
  9. |**_id**|`string`|Unique identifier for this archetype record|No, default: |
  10. |**draft**|`boolean`|Indicates this archetype record is a draft and is not published|No, default: |
  11. |**created**|`string`|Date and time this archetype record was created in ISO 8601 date standard e.g. YYYY-MM-DDThh:mm:ss.sTZD|No, default: |
  12. |**updated**|`string`|Date and time this archetype record was updated in ISO 8601 date standard e.g. YYYY-MM-DDThh:mm:ss.sTZD|No, default: |
  13. |**price**|`integer`|Real estate price in cents as an integer (whole number)|No, default: |
  14. |**listing_address**|`string`|To add multiple address lines, use, for example, 1234 Glücklichkeit Straße Hinterhaus 5 Etage li|No, default: |
  15. |**listing_city**|`string`|undefined|No, default: |
  16. |**listing_region**|`string`|The general region where the listing is located. Can be a US state, or a province, for instance.|No, default: |
  17. |**listing_postal_code**|`string`|undefined|No, default: |
  18. |**listing_neighborhood**|`string`|The neighborhood where the listing is located.|No, default: |
  19. |**listing_county**|`string`|The county where the listing is located.|No, default: |
  20. |**MLS_number**|`string`|Multiple Listing Service Number|No, default: |
  21. |**primary_image_archetype**|`image_archetype_schema.json`||No|
  22. |**image_archetypes**|`array[*-15]`|Array of Image Archetype IDs|No, default: `[]`|
  23. |**description**|`string`|Description of the real estate listing|No, default: |
  24. |**open_house_date**|`string[*-10]`|Date and time open house showings occur in ISO 8601 date standard e.g. YYYY-MM-DDThh:mm:ss.sTZD|No, default: `[]`|
  25. |**status**||Status of real estate listing.|No, default: `Active`|
  26. |**listing_date**|`string`|Date and time the real estate listing was published in ISO 8601 date standard e.g. YYYY-MM-DDThh:mm:ss.sTZD|No, default: |
  27. |**broker**|`string`|The brokerage firm administering the sale.|No, default: |
  28. |**broker_info**|`string`|URL to the broker's website|No, default: |
  29. |**agent**|`string`|The specific agent administering the sale.|No, default: |
  30. |**agent_info**|`string`|URL to the agent's website|No, default: |
  31. |**property_type**||The specific type of property the listing can be categorized as.|No, default: `Single-Family Home`|
  32. |**style**||The architectural style of the listing.|No, default: `Log Home`|
  33. |**built**|`string`|Date and time the real estate listing was published in ISO 8601 date standard e.g. YYYY-MM-DDThh:mm:ss.sTZD|No, default: |
  34. |**home_area**|`integer`|The area of the home in square feet|No, default: |
  35. |**property_area**|`integer`|The area of the property in acres|No, default: |
  36. |**tags**|`array[*-6]`|Array of Tag Archetypes that are used to help categorize this Archetype record|No, default: `[]`|
  37.  
  38. Additional properties are not allowed.
  39.  
  40. Real Estate Listing Schema._id
  41.  
  42. Unique identifier for this archetype record
  43.  
  44. * **Type**: `string`
  45. * **Required**: No, default:
  46.  
  47. Real Estate Listing Schema.draft
  48.  
  49. Indicates this archetype record is a draft and is not published
  50.  
  51. * **Type**: `boolean`
  52. * **Required**: No, default:
  53.  
  54. Real Estate Listing Schema.created
  55.  
  56. Date and time this archetype record was created in ISO 8601 date standard e.g. YYYY-MM-DDThh:mm:ss.sTZD
  57.  
  58. * **Type**: `string`
  59. * **Required**: No, default:
  60. * **Format**: date-time
  61.  
  62. Real Estate Listing Schema.updated
  63.  
  64. Date and time this archetype record was updated in ISO 8601 date standard e.g. YYYY-MM-DDThh:mm:ss.sTZD
  65.  
  66. * **Type**: `string`
  67. * **Required**: No, default:
  68. * **Format**: date-time
  69.  
  70. Real Estate Listing Schema.price
  71.  
  72. Real estate price in cents as an integer (whole number)
  73.  
  74. * **Type**: `integer`
  75. * **Required**: No, default:
  76. * **Maximum**: ` <= 99999999999999`
  77.  
  78. Real Estate Listing Schema.listing_address
  79.  
  80. To add multiple address lines, use
  81. . For example, 1234 Glücklichkeit Straße
  82. Hinterhaus 5. Etage li.
  83.  
  84. * **Type**: `string`
  85. * **Required**: No, default:
  86.  
  87. Real Estate Listing Schema.listing_city
  88.  
  89. * **Type**: `string`
  90. * **Required**: No, default:
  91.  
  92. Real Estate Listing Schema.listing_region
  93.  
  94. The general region where the listing is located. Can be a US state, or a province, for instance.
  95.  
  96. * **Type**: `string`
  97. * **Required**: No, default:
  98.  
  99. Real Estate Listing Schema.listing_postal_code
  100.  
  101. * **Type**: `string`
  102. * **Required**: No, default:
  103.  
  104. Real Estate Listing Schema.listing_neighborhood
  105.  
  106. The neighborhood where the listing is located.
  107.  
  108. * **Type**: `string`
  109. * **Required**: No, default:
  110.  
  111. Real Estate Listing Schema.listing_county
  112.  
  113. The county where the listing is located.
  114.  
  115. * **Type**: `string`
  116. * **Required**: No, default:
  117.  
  118. Real Estate Listing Schema.MLS_number
  119.  
  120. Multiple Listing Service Number
  121.  
  122. * **Type**: `string`
  123. * **Required**: No, default:
  124.  
  125. Real Estate Listing Schema.primary_image_archetype
  126.  
  127. * **Type**: `image_archetype_schema.json`
  128. * **Required**: No
  129.  
  130. Real Estate Listing Schema.image_archetypes
  131.  
  132. Array of Image Archetype IDs
  133.  
  134. * **Type**: `array[*-15]`
  135. * Each element in the array must be unique.
  136. * **Required**: No, default: `[]`
  137.  
  138. Real Estate Listing Schema.description
  139.  
  140. Description of the real estate listing
  141.  
  142. * **Type**: `string`
  143. * **Required**: No, default:
  144.  
  145. Real Estate Listing Schema.open_house_date
  146.  
  147. Date and time open house showings occur in ISO 8601 date standard e.g. YYYY-MM-DDThh:mm:ss.sTZD
  148.  
  149. * **Type**: `string[*-10]`
  150. * Each element in the array must be unique.
  151. * **Required**: No, default: `[]`
  152.  
  153. Real Estate Listing Schema.status
  154.  
  155. Status of real estate listing.
  156.  
  157. * **Type**:
  158. * **Required**: No, default: `Active`
  159. * **Allowed values**: `Active`, `Cancelled`, `Sold`, `Option`, `Expired`, `New`, `Pending`, `Price Change`, `Reduced`, `Withdrawn`
  160.  
  161. Real Estate Listing Schema.listing_date
  162.  
  163. Date and time the real estate listing was published in ISO 8601 date standard e.g. YYYY-MM-DDThh:mm:ss.sTZD
  164.  
  165. * **Type**: `string`
  166. * **Required**: No, default:
  167. * **Format**: date-time
  168.  
  169. Real Estate Listing Schema.broker
  170.  
  171. The brokerage firm administering the sale.
  172.  
  173. * **Type**: `string`
  174. * **Required**: No, default:
  175.  
  176. Real Estate Listing Schema.broker_info
  177.  
  178. URL to the broker's website
  179.  
  180. * **Type**: `string`
  181. * **Required**: No, default:
  182. * **Format**: uri
  183.  
  184. Real Estate Listing Schema.agent
  185.  
  186. The specific agent administering the sale.
  187.  
  188. * **Type**: `string`
  189. * **Required**: No, default:
  190.  
  191. Real Estate Listing Schema.agent_info
  192.  
  193. URL to the agent's website
  194.  
  195. * **Type**: `string`
  196. * **Required**: No, default:
  197. * **Format**: uri
  198.  
  199. Real Estate Listing Schema.property_type
  200.  
  201. The specific type of property the listing can be categorized as.
  202.  
  203. * **Type**:
  204. * **Required**: No, default: `Single-Family Home`
  205. * **Allowed values**: `Single-Family Home`, `Multiple-Family Home`, `Housing Cooperative (Co-op)`, `Condominium`
  206.  
  207. Real Estate Listing Schema.style
  208.  
  209. The architectural style of the listing.
  210.  
  211. * **Type**:
  212. * **Required**: No, default: `Log Home`
  213. * **Allowed values**: `Log Home`, `Cape Cod`, `Art Deco`, `Craftsman`, `Contemporary`, `Colonial`, `Dutch Colonial`, `Georgian Colonial`, `Federal Colonial`, `Mid-Century Modern`, `French Provincial`, `Greek Revival`, `Italianate`, `Mediterranean`, `Modern`, `Neoclassical`, `Prairie`, `Pueblo Revival`, `Ranch`, `Townhouse`, `Tudor`, `Spanish`, `Victorian`, `Cottage`, `Farmhouse`, `Oriental`
  214.  
  215. Real Estate Listing Schema.built
  216.  
  217. Date and time the real estate listing was published in ISO 8601 date standard e.g. YYYY-MM-DDThh:mm:ss.sTZD
  218.  
  219. * **Type**: `string`
  220. * **Required**: No, default:
  221. * **Format**: date-time
  222.  
  223. Real Estate Listing Schema.home_area
  224.  
  225. The area of the home in square feet
  226.  
  227. * **Type**: `integer`
  228. * **Required**: No, default:
  229. * **Maximum**: ` <= 99999999999999`
  230.  
  231. Real Estate Listing Schema.property_area
  232.  
  233. The area of the property in acres
  234.  
  235. * **Type**: `integer`
  236. * **Required**: No, default:
  237. * **Maximum**: ` <= 99999999999999`
  238.  
  239. Real Estate Listing Schema.tags
  240.  
  241. Array of Tag Archetypes that are used to help categorize this Archetype record
  242.  
  243. * **Type**: `array[*-6]`
  244. * Each element in the array must be unique.
  245. * **Required**: No, default: `[]`
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement