mirror of
https://github.com/supabase/supabase.git
synced 2026-07-04 22:15:46 +08:00
49 lines
907 B
JSON
49 lines
907 B
JSON
{
|
|
"type": "object",
|
|
"required": ["id", "inserted_at", "updated_at", "status", "version"],
|
|
"properties": {
|
|
"app_id": {
|
|
"title": "App Id",
|
|
"type": "number"
|
|
},
|
|
"config": {
|
|
"title": "Config",
|
|
"type": "object"
|
|
},
|
|
"id": {
|
|
"title": "Id",
|
|
"type": "number"
|
|
},
|
|
"inserted_at": {
|
|
"title": "Inserted At",
|
|
"type": "string"
|
|
},
|
|
"project_id": {
|
|
"title": "Project Id",
|
|
"type": "number"
|
|
},
|
|
"status": {
|
|
"title": "Status",
|
|
"type": "string",
|
|
"enum": [
|
|
"INACTIVE",
|
|
"ACTIVE_HEALTHY",
|
|
"ACTIVE_UNHEALTHY",
|
|
"COMING_UP",
|
|
"UNKNOWN",
|
|
"GOING_DOWN",
|
|
"INIT_FAILED",
|
|
"REMOVED"
|
|
]
|
|
},
|
|
"updated_at": {
|
|
"title": "Updated At",
|
|
"type": "string"
|
|
},
|
|
"version": {
|
|
"title": "Version",
|
|
"type": "string"
|
|
}
|
|
}
|
|
}
|