Files
supabase/studio/stores/jsonSchema/users.json
Joshen Lim 9373f69220 Studio 🎙
2021-11-26 11:15:00 +05:30

51 lines
975 B
JSON

{
"type": "object",
"required": ["id", "auth0_id", "inserted_at", "updated_at", "username", "is_alpha_user"],
"properties": {
"auth0_id": {
"title": "Auth0 Id",
"type": "string"
},
"data": {
"title": "Data",
"type": "object"
},
"first_name": {
"title": "First Name",
"type": "string"
},
"id": {
"title": "Id",
"type": "number"
},
"inserted_at": {
"title": "Inserted At",
"type": "string"
},
"is_alpha_user": {
"title": "Is Alpha User",
"type": "boolean"
},
"last_name": {
"title": "Last Name",
"type": "string"
},
"mobile": {
"title": "Mobile",
"type": "string"
},
"primary_email": {
"title": "Primary Email",
"type": "string"
},
"updated_at": {
"title": "Updated At",
"type": "string"
},
"username": {
"title": "Username",
"type": "string"
}
}
}