{
  "$schema": "http://json-schema.org/draft-07/schema",
  "title": "Surface Location v1",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": [
        "string",
        "null"
      ]
    },
    "comments": {
      "type": [
        "string",
        "null"
      ]
    },
    "country": {
      "type": [
        "string",
        "null"
      ]
    },
    "state": {
      "type": [
        "string",
        "null"
      ]
    },
    "county": {
      "type": [
        "string",
        "null"
      ]
    },
    "city": {
      "type": [
        "string",
        "null"
      ]
    },
    "area": {
      "type": [
        "string",
        "null"
      ]
    },
    "field": {
      "type": [
        "string",
        "null"
      ]
    },
    "structure": {
      "type": [
        "string",
        "null"
      ]
    },
    "confidence_level": {
      "description": "Confidence Level",
      "anyOf": [
        {
          "type": "number",
          "format": "double"
        },
        {
          "type": "null"
        }
      ]
    },
    "radius": {
      "description": "Uncertainty Radius",
      "anyOf": [
        {
          "type": "number",
          "format": "double"
        },
        {
          "type": "null"
        }
      ]
    },
    "scale_factor": {
      "description": "Scale Factor",
      "anyOf": [
        {
          "type": "number",
          "format": "double"
        },
        {
          "type": "null"
        }
      ]
    },
    "grid_convergence": {
      "description": "Grid Convergence",
      "anyOf": [
        {
          "type": "number",
          "format": "double"
        },
        {
          "type": "null"
        }
      ]
    },
    "latitude": {
      "description": "Latitude",
      "anyOf": [
        {
          "type": "number",
          "format": "double"
        },
        {
          "type": "null"
        }
      ]
    },
    "longitude": {
      "description": "Longitude",
      "anyOf": [
        {
          "type": "number",
          "format": "double"
        },
        {
          "type": "null"
        }
      ]
    },
    "easting": {
      "description": "Easting",
      "anyOf": [
        {
          "type": "number",
          "format": "double"
        },
        {
          "type": "null"
        }
      ]
    },
    "northing": {
      "description": "Northing",
      "anyOf": [
        {
          "type": "number",
          "format": "double"
        },
        {
          "type": "null"
        }
      ]
    }
  },
  "required": [
    "id",
    "latitude",
    "longitude",
    "easting",
    "northing"
  ]
}