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

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