Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 37 additions & 12 deletions lib/urbanopt/geojson/schema/building_properties.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,15 +53,15 @@
"type": "string"
},
"weather_filename": {
"description": "Name of EPW weather file for this building. Defaults to site's weather_filename.",
"description": "Name of EPW weather file for this building. Defaults to site's weather_filename.",
"type": "string"
},
"tariff_filename": {
"description": "Name of the tariff file for this building. Defaults to site's tariff_filename.",
"description": "Name of the tariff file for this building. Defaults to site's tariff_filename.",
"type": "string"
},
"surface_elevation": {
"description": "The surface elevation (above NAVD88 datum) of the building (ft). This is the elevation of the ground at the building location, any below ground stories will be lower than this. Defaults to site's surface_elevation.",
"description": "The surface elevation (above NAVD88 datum) of the building (ft). This is the elevation of the ground at the building location, any below ground stories will be lower than this. Defaults to site's surface_elevation.",
"type": "number"
},
"timesteps_per_hour": {
Expand Down Expand Up @@ -103,20 +103,20 @@
"type": "number"
},
"roof_type": {
"description": "The type of roof. Defaults to flat.",
"type": "string",
"enum": [
"Flat",
"Gable",
"Hip"
]
"$ref": "#/definitions/roofType"
},
"foundation_type": {
"$ref": "#/definitions/foundationType"
},
"attic_type": {
"$ref": "#/definitions/atticType"
},
"schedules_variation": {
"$ref": "#/definitions/schedulesVariation"
},
"schedules_type": {
"$ref": "#/definitions/schedulesType"
},
"footprint_area": {
"description": "Area of the footprint (ft^2). Calculated on export.",
"type": "number"
Expand Down Expand Up @@ -537,8 +537,8 @@
"90.1-2007",
"90.1-2010",
"90.1-2013",
"90.1-2016",
"90.1-2019",
"90.1-2016",
"90.1-2019",
"NREL ZNE Ready 2017",
"DEER Pre-1975",
"DEER 1985",
Expand Down Expand Up @@ -568,6 +568,15 @@
"Residential IECC 2018 - Customizable Template Sep 2020"
]
},
"roofType": {
"description": "The type of roof. Defaults to flat.",
"type": "string",
"enum": [
"Flat",
"Gable",
"Hip"
]
},
"foundationType": {
"description": "The foundation type of the building. Required for residential buildings.",
"type": "string",
Expand All @@ -589,6 +598,22 @@
"attic - conditioned",
"flat roof"
]
},
"schedulesVariation": {
"description": "Whether schedules vary by unit or by building. Defaults to unit-to-unit. Choice unit-to-unit only applies when schedules type is stochastic.",
"type": "string",
"enum": [
"unit-to-unit",
"building-to-building"
]
},
"schedulesType": {
"description": "The type of occupant-related schedules to use. Defaults to stochastic.",
"type": "string",
"enum": [
"default",
"stochastic"
]
}
}
}