VitalUser
An end user on the Junction (Vital) platform. Each user represents a person whose wearable, device, and lab data is ingested under your team. Identified by a Junction-issued user_id (UUID) and an optional client_user_id (your own opaque identifier).
Properties
| Name | Type | Description |
|---|---|---|
| user_id | string | Junction-assigned unique identifier for the user. |
| client_user_id | string | Your application's opaque identifier for the user. Must be unique within the team. |
| team_id | string | Identifier of the team that owns this user. |
| created_on | string | ISO-8601 timestamp of when the user was created. |
| fallback_time_zone | stringnull | IANA time zone applied when device-reported time zone is unavailable (e.g., America/New_York). |
| fallback_birth_date | stringnull | Fallback birth date used for age-dependent calculations. |
| connected_sources | array | Providers the user has connected (Fitbit, Garmin, Oura, etc.). |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/vital-io/main/json-schema/vital-user-schema.json",
"title": "VitalUser",
"description": "An end user on the Junction (Vital) platform. Each user represents a person whose wearable, device, and lab data is ingested under your team. Identified by a Junction-issued user_id (UUID) and an optional client_user_id (your own opaque identifier).",
"type": "object",
"required": ["user_id", "client_user_id", "team_id"],
"properties": {
"user_id": {
"type": "string",
"format": "uuid",
"description": "Junction-assigned unique identifier for the user."
},
"client_user_id": {
"type": "string",
"description": "Your application's opaque identifier for the user. Must be unique within the team."
},
"team_id": {
"type": "string",
"format": "uuid",
"description": "Identifier of the team that owns this user."
},
"created_on": {
"type": "string",
"format": "date-time",
"description": "ISO-8601 timestamp of when the user was created."
},
"fallback_time_zone": {
"type": ["string", "null"],
"description": "IANA time zone applied when device-reported time zone is unavailable (e.g., America/New_York)."
},
"fallback_birth_date": {
"type": ["string", "null"],
"format": "date",
"description": "Fallback birth date used for age-dependent calculations."
},
"connected_sources": {
"type": "array",
"description": "Providers the user has connected (Fitbit, Garmin, Oura, etc.).",
"items": {
"type": "object",
"properties": {
"provider": {"type": "string"},
"created_on": {"type": "string", "format": "date-time"},
"status": {"type": "string", "enum": ["connected", "error", "paused", "disconnected"]}
}
}
}
}
}
Work with this as data
Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for schemas
4 MCP tools reach this
find_json_schemasBrowse and filter every JSON Schema in the catalog.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
curl "https://apis.io/api/v1/json-schemas/vital-user"
curl "https://apis.io/api/v1/json-schemas?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.