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

31 lines
560 B
JSON

{
"type": "object",
"required": ["id", "inserted_at", "updated_at", "name"],
"properties": {
"config_schema": {
"title": "Config Schema",
"type": "object"
},
"description": {
"title": "Description",
"type": "string"
},
"id": {
"title": "Id",
"type": "number"
},
"inserted_at": {
"title": "Inserted At",
"type": "string"
},
"name": {
"title": "Name",
"type": "string"
},
"updated_at": {
"title": "Updated At",
"type": "string"
}
}
}