Oura Ring · Schema
PublicVO2Max
VO2Max estimate.
HealthWearablesSleepFitnessHeart RateReadinessSmart RingBiometrics
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique identifier of the object. |
| day | object | Day that the estimate belongs to. |
| timestamp | object | Timestamp indicating when the estimate was created. |
| vo2_max | integer | VO2 max value. |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/api-evangelist/oura/main/json-schema/oura-publicvo2max.json",
"title": "PublicVO2Max",
"description": "VO2Max estimate.",
"properties": {
"id": {
"type": "string",
"minLength": 1,
"title": "",
"description": "Unique identifier of the object."
},
"day": {
"$ref": "#/components/schemas/ISODate",
"title": "",
"description": "Day that the estimate belongs to."
},
"timestamp": {
"$ref": "#/components/schemas/LocalizedDateTime",
"title": "",
"description": "Timestamp indicating when the estimate was created."
},
"vo2_max": {
"type": "integer",
"title": "",
"description": "VO2 max value."
}
},
"type": "object",
"required": [
"id",
"day",
"timestamp",
"vo2_max"
],
"x-cloud-only": true,
"x-collection": "publicvo2max",
"x-owner": "movement-squad"
}