Files
SoftwareX/firebase-blueprint.json
2026-08-14 14:17:48 +02:00

26 lines
693 B
JSON

{
"entities": {
"WaitlistEntry": {
"collectionName": "waitlist_entries",
"fields": {
"id": { "type": "string" },
"email": { "type": "string" },
"fullName": { "type": "string" },
"tier": { "type": "string" },
"investmentAmount": { "type": "number" },
"createdAt": { "type": "timestamp" },
"position": { "type": "number" },
"referralCode": { "type": "string" },
"referredBy": { "type": "string" }
}
},
"WaitlistStats": {
"collectionName": "stats",
"fields": {
"totalRegistered": { "type": "number" },
"totalFundedAmount": { "type": "number" }
}
}
}
}