-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsample_rfd2.json
More file actions
27 lines (27 loc) · 902 Bytes
/
sample_rfd2.json
File metadata and controls
27 lines (27 loc) · 902 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"rfd_id": "sf_weather_may_aug_001",
"name": "Synthetic Weather Data for San Francisco (May to August)",
"description": "A synthetic dataset containing daily weather information for San Francisco from May to August, including temperature, humidity, and precipitation.",
"schema": {
"type": "object",
"properties": {
"date": {
"type": "string",
"format": "date"
},
"temperature": {
"type": "number",
"description": "Average daily temperature in degrees Fahrenheit"
},
"humidity": {
"type": "number",
"description": "Average daily humidity percentage"
},
"precipitation": {
"type": "number",
"description": "Daily precipitation in inches"
}
},
"required": ["date", "temperature", "humidity", "precipitation"]
}
}