Sha256: 4c6eb9d88dd496ff4e597a62477abb13dfaf4b7527bf23062b634ce458d4612c
Contents?: true
Size: 1.64 KB
Versions: 23
Compression:
Stored size: 1.64 KB
Contents
{ "$schema": "http://json-schema.org/draft-04/schema#", "id": "http://json-schema.org/openstudio-urban-modeling/electrical_junction_properties.json#", "title": "URBANopt Electrical Junction", "description": "Schema for an URBANopt Electrical Junction object", "type": "object", "properties": { "id": { "description": "Unique id used to refer to this feature within this dataset.", "type": "string" }, "project_id": { "description": "Project which this feature belongs to.", "type": "string" }, "type": { "description": "Type of feature.", "type": "string", "enum": [ "ElectricalJunction" ] }, "source_name": { "description": "Name of the original data source.", "type": "string" }, "source_id": { "description": "Id of the feature in original data source.", "type": "string" }, "name": { "description": "Feature name", "type": "string" }, "connector_type": { "$ref": "#/definitions/ElectricalJunctionType" }, "buildingId": { "description": "Id of building if this junction is inside a building.", "type": "string" }, "DSId": { "description": "Id of district system if this junction is inside a district system.", "type": "string" }, "user_data": { "description": "Arbitrary user data" } }, "required": [ "type", "id" ], "additionalProperties": false, "definitions": { "ElectricalJunctionType": { "description": "Type of electrical junction", "type": "string", "enum": [ "ElectricalJunction" ] } } }
Version data entries
23 entries across 23 versions & 1 rubygems