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

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"
}
}
}