Sha256: 258ec7a64cb058820a627c16a7e2250b0dfc467d170557885b7add82d5b59807

Contents?: true

Size: 1.66 KB

Versions: 1

Compression:

Stored size: 1.66 KB

Contents

{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "id": "http://json-schema.org/openstudio-urban-modeling/district_system_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"
    },
    "building_id": {
      "description": "Id of building if this junction is inside a building.",
      "type": "string"
    },
    "district_system_id": {
      "description": "Id of district system if this junction is inside a district system.",
      "type": "string"
    },
    "user_data": {
      "description": "Arbitrary user data"
    }
  },
  "required": [
    "type",
    "connector_type"
  ],
  "additionalProperties": false,
  "definitions": {
    "ElectricalJunctionType": {
      "description": "Type of electrical junction",
      "type": "string",
      "enum": [
        "ElectricalPanel"
      ]
    }
  }
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
urbanopt-geojson-0.1.0 lib/urbanopt/geojson/schema/electrical_junction_properties.json