mirror of
https://github.com/supabase/supabase.git
synced 2026-07-04 22:15:46 +08:00
65 lines
1.2 KiB
JSON
65 lines
1.2 KiB
JSON
{
|
|
"type": "object",
|
|
"required": [
|
|
"id",
|
|
"inserted_at",
|
|
"updated_at",
|
|
"infrastructure_type",
|
|
"status",
|
|
"provider_reference",
|
|
"provider"
|
|
],
|
|
"properties": {
|
|
"id": {
|
|
"title": "Id",
|
|
"type": "number"
|
|
},
|
|
"infrastructure_type": {
|
|
"title": "Infrastructure Type",
|
|
"type": "string",
|
|
"enum": ["DATABASE", "WEB_SERVER"]
|
|
},
|
|
"inserted_at": {
|
|
"title": "Inserted At",
|
|
"type": "string"
|
|
},
|
|
"ipv4_address": {
|
|
"title": "Ipv4 Address",
|
|
"type": "string"
|
|
},
|
|
"provider": {
|
|
"title": "Provider",
|
|
"type": "string"
|
|
},
|
|
"provider_reference": {
|
|
"title": "Provider Reference",
|
|
"type": "string"
|
|
},
|
|
"service_id": {
|
|
"title": "Service Id",
|
|
"type": "number"
|
|
},
|
|
"status": {
|
|
"title": "Status",
|
|
"type": "string",
|
|
"enum": [
|
|
"INACTIVE",
|
|
"ACTIVE_HEALTHY",
|
|
"ACTIVE_UNHEALTHY",
|
|
"COMING_UP",
|
|
"UNKNOWN",
|
|
"GOING_DOWN",
|
|
"REMOVED"
|
|
]
|
|
},
|
|
"updated_at": {
|
|
"title": "Updated At",
|
|
"type": "string"
|
|
},
|
|
"url": {
|
|
"title": "Url",
|
|
"type": "string"
|
|
}
|
|
}
|
|
}
|