-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathocean_surface_temps.json
101 lines (101 loc) · 2.33 KB
/
ocean_surface_temps.json
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"ModelName": "ocean surface temps",
"ModelMetadata": {
"Author": "pnnaylor@",
"DateCreated": "May 26, 2020, 05:48 PM",
"DateLastModified": "Jun 18, 2020, 10:43 AM",
"Description": "Model supports an example for the data modeling session of dbCon 2020.",
"Version": "1.0"
},
"DataModel": [
{
"TableName": "oceantemps",
"KeyAttributes": {
"PartitionKey": {
"AttributeName": "organization_number",
"AttributeType": "N"
},
"SortKey": {
"AttributeName": "device#detail",
"AttributeType": "S"
}
},
"NonKeyAttributes": [
{
"AttributeName": "surface_temperature_kelvin",
"AttributeType": "S"
},
{
"AttributeName": "fault_indicated",
"AttributeType": "BOOL"
},
{
"AttributeName": "ttl",
"AttributeType": "S"
},
{
"AttributeName": "install_longitude",
"AttributeType": "N"
},
{
"AttributeName": "install_latitude",
"AttributeType": "N"
},
{
"AttributeName": "hardware_model_revision",
"AttributeType": "S"
},
{
"AttributeName": "status",
"AttributeType": "S"
},
{
"AttributeName": "serviced_date",
"AttributeType": "S"
}
],
"TableData": [
{
"organization_number": {
"N": "713"
},
"device#detail": {
"S": "00094#202005262106"
},
"surface_temperature_kelvin": {
"S": "293.55"
},
"fault_indicated": {
"BOOL": false
},
"ttl": {
"S": "1593224182"
},
"install_longitude": {
"N": "-28.614913"
},
"install_latitude": {
"N": "153.620450"
}
},
{
"organization_number": {
"N": "713"
},
"device#detail": {
"S": "00094#metadata"
},
"install_longitude": {
"N": "-28.614913"
},
"install_latitude": {
"N": "153.620450"
}
}
],
"DataAccess": {
"MySql": {}
}
}
]
}