{
    "$schema": "http://json-schema.org/draft-04/schema#",
    "title": "formation_temperature-v2",
    "type": "object",
    "properties": {
      "id": {
        "description": "Id of the formation temperature.",
        "type": "string"
      },
      "entries": {
        "type": "array",
        "items": [
          {
            "type": "object",
            "properties": {
              "tvd": {
                "type": "number",
                "description": "True vertical depth (StandardDepthIndex,meter,m)."
              },
              "temperature": {
                "description": "Formation temperature at the depth (Temperature,kelvin,K).",
                "type": "number"
              }
            },
            "required": [
              "tvd",
              "temperature"
            ]
          }
        ]
      }
    },
    "required": [
      "id",
      "entries"
    ]
  }