{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "title": "Wellbore set (wellbore_set-v1)",
  "type": "array",
  "items": {
    "$ref": "#/definitions/Wellbore"
  },
  "definitions": {
    "Wellbore": {
      "type": "object",
      "additionalProperties": false,
      "properties": {
        "id": {
          "type": [
            "null",
            "string"
          ]
        },
        "name": {
          "type": [
            "null",
            "string"
          ]
        },
        "ubhi": {
          "type": [
            "null",
            "string"
          ],
          "description": "Unique wellbore identity",
        },
        "side_track_md": {
          "type": [
            "null",
            "number"
          ],
          "format": "double"
        },
        "reference_elevation": {
          "type": [
            "null",
            "number"
          ],
          "description": "Depth Reference Elevation",
          "format": "double"
        },
        "index": {
          "type": "integer",
          "format": "int32"
        },
        "node_id": {
          "type": [
            "null",
            "string"
          ]
        },
        "parent_wellbore_id": {
          "type": [
            "null",
            "string"
          ]
        }
      }
    }
  }
}