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

23 lines
380 B
JSON

{
"type": "object",
"required": ["id", "is_owner"],
"properties": {
"id": {
"title": "Id",
"type": "number"
},
"is_owner": {
"title": "Is Owner",
"type": "boolean"
},
"organization_id": {
"title": "Organization Id",
"type": "number"
},
"user_id": {
"title": "User Id",
"type": "number"
}
}
}