WegoWise · Schema
WegoWise Building
JSON Schema for a building record in the WegoWise energy benchmarking platform.
BenchmarkingBuilding EnergyEnergy EfficiencyMultifamilyProperty ManagementUtility Data
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | Unique WegoWise building identifier |
| name | string | Building name |
| address | string | Street address |
| city | string | City |
| state | string | US state abbreviation |
| zip | string | ZIP/postal code |
| year_built | integer | Year the building was constructed |
| gross_area | number | Total gross floor area in square feet |
| number_of_units | integer | Number of residential units |
| building_type | string | Building type classification |
| development_id | integer | ID of the parent development grouping |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://api-evangelist.github.io/wegowise/json-schema/wegowise-building-schema.json",
"title": "WegoWise Building",
"description": "JSON Schema for a building record in the WegoWise energy benchmarking platform.",
"type": "object",
"properties": {
"id": {
"type": "integer",
"description": "Unique WegoWise building identifier"
},
"name": {
"type": "string",
"description": "Building name"
},
"address": {
"type": "string",
"description": "Street address"
},
"city": {
"type": "string",
"description": "City"
},
"state": {
"type": "string",
"maxLength": 2,
"description": "US state abbreviation"
},
"zip": {
"type": "string",
"pattern": "^\\d{5}(-\\d{4})?$",
"description": "ZIP/postal code"
},
"year_built": {
"type": "integer",
"minimum": 1800,
"description": "Year the building was constructed"
},
"gross_area": {
"type": "number",
"minimum": 0,
"description": "Total gross floor area in square feet"
},
"number_of_units": {
"type": "integer",
"minimum": 0,
"description": "Number of residential units"
},
"building_type": {
"type": "string",
"enum": ["Multifamily", "Commercial", "Mixed-Use"],
"description": "Building type classification"
},
"development_id": {
"type": "integer",
"description": "ID of the parent development grouping"
}
},
"required": ["id", "name", "address", "city", "state", "zip"]
}