-
Notifications
You must be signed in to change notification settings - Fork 2
/
appwrite.json
59 lines (59 loc) · 1.79 KB
/
appwrite.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
{
"projectId": "634502e6b603aa796019",
"projectName": "workout-buddy",
"collections": [
{
"$id": "634503105a8d544ab6e9",
"$createdAt": "2022-10-11T05:45:52.371+00:00",
"$updatedAt": "2022-10-13T08:41:12.299+00:00",
"$permissions": [
"create(\"users\")"
],
"databaseId": "63450305d0f1b108e5bc",
"name": "workouts",
"enabled": true,
"documentSecurity": true,
"attributes": [
{
"key": "title",
"type": "string",
"status": "available",
"required": true,
"array": false,
"size": 255,
"default": null
},
{
"key": "load",
"type": "integer",
"status": "available",
"required": true,
"array": false,
"min": 0,
"max": 1000,
"default": null
},
{
"key": "reps",
"type": "integer",
"status": "available",
"required": false,
"array": false,
"min": 0,
"max": 1000,
"default": null
},
{
"key": "link",
"type": "string",
"status": "available",
"required": true,
"array": false,
"format": "url",
"default": null
}
],
"indexes": []
}
]
}