changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "date": {
+ "description": "Friday date (YYYY-MM-DD) for snapshot",
+ "type": "string"
+ },
+ "listings": {
+ "description": "Active property listings",
+ "items": {
+ "properties": {
+ "baths": {
+ "description": "Number of bathrooms",
+ "type": "string"
+ },
+ "beds": {
+ "description": "Number of bedrooms",
+ "type": "string"
+ },
+ "built_in": {
+ "description": "Year built",
+ "type": "string"
+ },
+ "city": {
+ "description": "City name",
+ "type": "string"
+ },
+ "days_on_market": {
+ "description": "Days on market",
+ "type": "string"
+ },
+ "floor_size": {
+ "description": "Floor area in square feet",
+ "type": "string"
+ },
+ "lot_size": {
+ "description": "Lot size in square feet",
+ "type": "string"
+ },
+ "price": {
+ "description": "Listing price",
+ "type": "string"
+ },
+ "property_id": {
+ "description": "Unique property identifier",
+ "type": "string"
+ },
+ "state": {
+ "description": "State abbreviation",
+ "type": "string"
+ },
+ "street_address": {
+ "description": "Property street address",
+ "type": "string"
+ },
+ "type": {
+ "description": "Property type",
+ "type": "string"
+ },
+ "zip": {
+ "description": "Zip code",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "region": {
+ "description": "Region code queried",
+ "type": "string"
+ },
+ "returned": {
+ "description": "Number of listings returned",
+ "type": "number"
+ },
+ "total_available": {
+ "description": "Total active listings in region",
+ "type": "number"
+ }
+ },
+ "required": [
+ "region",
+ "date",
+ "total_available",
+ "returned",
+ "listings"
+ ],
+ "type": "object"
+}