Oura Ring · Schema

PublicDailyCardiovascularAge

Daily Cardiovascular Age.

HealthWearablesSleepFitnessHeart RateReadinessSmart RingBiometrics

Properties

Name Type Description
id string Unique identifier of the object.
day object Day that the prediction belongs to.
pulse_wave_velocity number Pulse wave velocity (m/s), derived from vascular age, with possible offset added.
vascular_age integer Predicted vascular age in range [18, 100].
View JSON Schema on GitHub

JSON Schema

oura-publicdailycardiovascularage.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/oura/main/json-schema/oura-publicdailycardiovascularage.json",
  "title": "PublicDailyCardiovascularAge",
  "description": "Daily Cardiovascular Age.",
  "properties": {
    "id": {
      "type": "string",
      "minLength": 1,
      "title": "",
      "description": "Unique identifier of the object."
    },
    "day": {
      "$ref": "#/components/schemas/ISODate",
      "title": "",
      "description": "Day that the prediction belongs to."
    },
    "pulse_wave_velocity": {
      "type": "number",
      "nullable": true,
      "title": "",
      "description": "Pulse wave velocity (m/s), derived from vascular age, with possible offset added."
    },
    "vascular_age": {
      "type": "integer",
      "nullable": true,
      "title": "",
      "description": "Predicted vascular age in range [18, 100]."
    }
  },
  "type": "object",
  "required": [
    "id",
    "day"
  ],
  "x-cloud-only": true,
  "x-collection": "publicdailycardiovascularage",
  "x-owner": "heart-health-squad"
}