{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://poseidat.org/schema/core/measurement/numeric.json",
  "title": "Numeric",
  "description": "A number representing a measurement from a sensor",
  "properties": {
    "value": {
      "description": "The absolute measured value",
      "type": "number"
    }
  },
  "required": [
    "value"
  ],
  "type": "object",
  "additionalProperties": false
}