{
  "title": "Transportation Networks",
  "type": "object",
  "$schema": "http://json-schema.org/draft-04/schema",
  "description": "The transportation network used for routing in the scene.",
  "properties": {
    "name": {
      "type": "string",
      "description": "The name of the transportation network. The name must be unique within a scene."
    },
    "path": {
      "type": "string",
      "description": "The path to the geodatabase which contains the network.",
      "pattern": "^file:.+\\.geodatabase?$"
    },
    "title": {
      "type": "string",
      "description": "A title or alias of the network layer. This can be used in the client user interface."
    }
  },
  "required": [
    "name",
    "path",
    "title"
  ],
  "additionalProperties": false,
  "esriDocumentation": {
    "examples": [
      {
        "title": "Transportation Networks",
        "code": {
          "transportationNetworks": {
            "name": "main.campus_ND",
            "path": "file:./esricampus.geodatabase",
            "title": "campus_ND"
          }
        }
      }
    ]
  }
}
