-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfirebase-blueprint.json
More file actions
43 lines (43 loc) · 1.22 KB
/
Copy pathfirebase-blueprint.json
File metadata and controls
43 lines (43 loc) · 1.22 KB
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
{
"entities": {
"User": {
"title": "User",
"description": "User profile information",
"type": "object",
"properties": {
"uid": { "type": "string" },
"displayName": { "type": "string" },
"email": { "type": "string" },
"energyScore": { "type": "number" },
"totalSavings": { "type": "number" },
"createdAt": { "type": "string", "format": "date-time" }
},
"required": ["uid", "email"]
},
"Device": {
"title": "Device",
"description": "Household appliance energy data",
"type": "object",
"properties": {
"id": { "type": "string" },
"uid": { "type": "string" },
"name": { "type": "string" },
"powerWatts": { "type": "number" },
"hoursPerDay": { "type": "number" },
"category": { "type": "string" },
"createdAt": { "type": "string", "format": "date-time" }
},
"required": ["id", "uid", "name", "powerWatts", "hoursPerDay"]
}
},
"firestore": {
"/users/{userId}": {
"schema": "User",
"description": "User profile documents"
},
"/devices/{deviceId}": {
"schema": "Device",
"description": "Device usage documents"
}
}
}