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

31 lines
583 B
JSON

{
"type": "object",
"required": ["id", "inserted_at", "updated_at", "api_key", "key_name", "project_id"],
"properties": {
"api_key": {
"title": "Api Key",
"type": "string"
},
"id": {
"title": "Id",
"type": "number"
},
"inserted_at": {
"title": "Inserted At",
"type": "string"
},
"key_name": {
"title": "Key Name",
"type": "string"
},
"project_id": {
"title": "Project Id",
"type": "number"
},
"updated_at": {
"title": "Updated At",
"type": "string"
}
}
}