@poseidat/schemas
Version:
The core schemas for the PoseiDAT data interchange formats
17 lines • 425 B
JSON
{
"$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
}