Sha256: 1c63a3ac1abcedc4941033f8a11f038f370435d3f1f755b8b96cbf90ff45f6fa

Contents?: true

Size: 1.67 KB

Versions: 6

Compression:

Stored size: 1.67 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",
    "id",
    "connector_type"
  ],
  "additionalProperties": false,
  "definitions": {
    "ElectricalJunctionType": {
      "description": "Type of electrical junction",
      "type": "string",
      "enum": [
        "ElectricalJunction"
      ]
    }
  }
}

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
urbanopt-geojson-0.3.0 lib/urbanopt/geojson/schema/electrical_junction_properties.json
urbanopt-geojson-0.3.0.pre1 lib/urbanopt/geojson/schema/electrical_junction_properties.json
urbanopt-geojson-0.2.0 lib/urbanopt/geojson/schema/electrical_junction_properties.json
urbanopt-geojson-0.2.0.pre3 lib/urbanopt/geojson/schema/electrical_junction_properties.json
urbanopt-geojson-0.2.0.pre2 lib/urbanopt/geojson/schema/electrical_junction_properties.json
urbanopt-geojson-0.2.0.pre1 lib/urbanopt/geojson/schema/electrical_junction_properties.json