Understand the fundamental building blocks of the HealthCloud platform — from organizations and projects to agents, workflows, and the clinical knowledge graph.
HealthCloud is built around a set of core primitives. Everything in the platform is expressed as one of these objects.
Top-level entity representing a company or institution using HealthCloud.
Scoped workspace within an organization for isolating use cases and environments.
Reusable components including apps, agents, AI models, datasets, and connectors.
A running, configured instance of an asset in a specific environment.
AI-powered workers that execute clinical, administrative, or data tasks autonomously.
Orchestration logic that coordinates agents, APIs, and data across steps.
FHIR-native clinical data including Patients, Observations, Conditions, and Encounters.
Represents a company or entity using HealthCloud. An organization is the root container for all resources.
{
"id": "org_healthcheck_pmc",
"name": "HealthCheck PMC",
"plan": "enterprise",
"created_at": "2026-01-01T00:00:00Z"
}A workspace within an organization. Projects let you group assets, manage environments, and isolate different use cases.
{
"id": "proj_uti_screening",
"organization_id": "org_healthcheck_pmc",
"name": "UTI Screening",
"environment": "production"
}Assets are the building blocks of the HealthCloud platform. Everything installable is an asset.
{
"id": "agent_prior_auth_v1",
"type": "agent",
"name": "Prior Authorization Agent",
"publisher": "HealthCloud",
"version": "1.2.0",
"status": "available"
}A deployment is a running, configured instance of an asset. Installing an asset does not run it — you must deploy it.
{
"id": "dep_prior_auth_prod",
"asset_id": "agent_prior_auth_v1",
"project_id": "proj_uti_screening",
"environment": "production",
"status": "active",
"deployed_at": "2026-03-01T09:00:00Z"
}Agents are AI-powered components that perform tasks autonomously. They are the execution units of the HealthCloud platform.
{
"id": "agent_prior_auth",
"capabilities": [
"eligibility_check",
"form_submission",
"status_tracking"
],
"supported_payers": ["CMS", "Aetna", "United"],
"avg_response_ms": 340
}Workflows orchestrate agents, APIs, and data across a sequence of steps. They define the logic of your healthcare application.
{
"name": "UTI Screening Workflow",
"trigger": "patient.intake_submitted",
"steps": [
"collect_symptoms",
"run_diagnostic_model",
"generate_lab_order",
"notify_provider"
]
}The platform maintains a live graph of clinical relationships enabling context-aware AI and explainable recommendations.
Assets can connect to external systems via first-class integration objects. You configure — not build — integrations.
HealthCloud is event-driven. Every meaningful platform action emits a structured event you can subscribe to.
Fine-grained access control ensures data is only accessible to authorized principals at every scope level.
A complete clinical application built on HealthCloud follows this sequence from concept to production.
Every meaningful action in HealthCloud emits a structured event. Subscribe via webhooks to build reactive, event-driven healthcare systems.
| Event | Description | Category |
|---|---|---|
deployment.created | An asset was successfully deployed to an environment | Deployment |
deployment.failed | A deployment attempt failed with an error | Deployment |
workflow.started | A workflow execution has begun | Workflow |
workflow.completed | A workflow execution finished successfully | Workflow |
workflow.failed | A workflow execution encountered an unrecoverable error | Workflow |
diagnostic.result_ready | An AI diagnostic model produced a result | Clinical |
patient.alert_triggered | A clinical alert threshold was crossed | Clinical |
asset.installed | An asset was installed into a project | Marketplace |
Fine-grained access control ensures every resource is only accessible to authorized principals at the appropriate scope.
Global administrative capabilities across all projects
manage_billingmanage_usersmanage_api_keysview_audit_logsScoped to a specific project workspace
install_assetsconfigure_integrationsdeploy_assetsview_metricsFine-grained control on individual assets
readconfiguredeployrunmonitorThese concepts come to life the moment you open Studio. Create your first project, install an asset, and run a workflow — all in under 10 minutes.