Example Data Format
This schema defines the format for the example data used in our physics experiment. |
||||
type |
object |
|||
properties |
||||
|
Unique identifier for the experiment. |
|||
type |
string |
|||
examples |
EXP12345 |
|||
|
Timestamp when the data was collected. |
|||
type |
string |
|||
examples |
2024-08-19T14:31:00Z |
|||
format |
date-time |
|||
|
Array of sensor readings collected during the experiment. |
|||
type |
array |
|||
items |
type |
object |
||
properties |
||||
|
Unique identifier for the sensor. |
|||
type |
string |
|||
examples |
SENSOR001 |
|||
|
The reading value from the sensor. |
|||
type |
number |
|||
examples |
23.5 |
|||
|
The unit of the sensor reading. |
|||
type |
string |
|||
enum |
Celsius, Kelvin, Fahrenheit |
|||
examples |
Celsius |
|||
|
Additional metadata about the experiment. |
|||
type |
object |
|||
properties |
||||
|
Location where the experiment was conducted. |
|||
type |
string |
|||
examples |
Lab A |
|||
|
Name or ID of the person who conducted the experiment. |
|||
type |
string |
|||
examples |
John Doe |
|||
additionalProperties |
False |